diff --git a/app/src/main/res/layout/fragment_news.xml b/app/src/main/res/layout/fragment_news.xml index 2ffe3f7707d4534d7dc68e9e094dc450f1f7c4a1..8296d09497dc19ce38a801b6f08c70aea555845c 100644 --- a/app/src/main/res/layout/fragment_news.xml +++ b/app/src/main/res/layout/fragment_news.xml @@ -2,21 +2,26 @@ <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" - android:padding="10dp"> + android:layout_marginBottom="@dimen/activity_vertical_margin" + android:layout_marginEnd="@dimen/activity_horizontal_margin" + android:layout_marginLeft="@dimen/activity_horizontal_margin" + android:layout_marginRight="@dimen/activity_horizontal_margin" + android:layout_marginStart="@dimen/activity_horizontal_margin" + android:layout_marginTop="@dimen/activity_vertical_margin"> <TextView android:id="@+id/news_content" android:layout_width="match_parent" android:layout_height="wrap_content" - android:layout_alignParentTop="true" - android:layout_above="@+id/news_status"/> + android:layout_above="@+id/news_status" + android:layout_alignParentTop="true" /> <TextView android:id="@+id/news_status" android:layout_width="match_parent" android:layout_height="wrap_content" - android:gravity="end" android:layout_alignParentBottom="true" + android:gravity="end" android:visibility="gone" /> </RelativeLayout>