87 lines
2.8 KiB
XML
87 lines
2.8 KiB
XML
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_margin="0dp"
|
||
|
android:background="@color/light_blue"
|
||
|
android:orientation="vertical"
|
||
|
android:paddingLeft="30dp"
|
||
|
android:paddingRight="30dp"
|
||
|
tools:context="fishrungames.bashgid.MainPageFragment" >
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/textView1"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center_horizontal"
|
||
|
android:layout_margin="8dp"
|
||
|
android:text="Новости"
|
||
|
android:textSize="24sp"
|
||
|
android:textStyle="bold" />
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_margin="8dp" >
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/news1ImageView"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/news1TextView"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_margin="8dp"
|
||
|
android:text="TextView" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_margin="8dp" >
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/news2ImageView"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/news2TextView"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_margin="8dp"
|
||
|
android:text="TextView" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_margin="8dp" >
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/news3ImageView"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/news3TextView"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_margin="8dp"
|
||
|
android:text="TextView" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/moreNewsButton"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center_horizontal"
|
||
|
android:text="Button" />
|
||
|
|
||
|
</LinearLayout>
|