69 lines
2.1 KiB
XML
69 lines
2.1 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout
|
||
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:background="#51D54D"
|
||
|
|
android:orientation="vertical"
|
||
|
|
>
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_marginTop="30dp"
|
||
|
|
android:gravity="center"
|
||
|
|
android:orientation="horizontal"
|
||
|
|
android:paddingLeft="20dp"
|
||
|
|
android:paddingRight="20dp"
|
||
|
|
>
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/image_view"
|
||
|
|
android:layout_width="50dp"
|
||
|
|
android:layout_height="50dp"
|
||
|
|
android:padding="5dp"
|
||
|
|
android:src="@drawable/ic_place"
|
||
|
|
/>
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_marginLeft="15dp"
|
||
|
|
android:gravity="center_vertical"
|
||
|
|
android:orientation="vertical"
|
||
|
|
>
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/tv_title"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:ellipsize="end"
|
||
|
|
android:lines="1"
|
||
|
|
android:text="title"
|
||
|
|
android:textColor="@color/white"
|
||
|
|
android:textSize="17dp"
|
||
|
|
android:textStyle="bold"
|
||
|
|
/>
|
||
|
|
|
||
|
|
<View
|
||
|
|
android:id="@+id/view"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="5dp"
|
||
|
|
/>
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/tv_content"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:ellipsize="end"
|
||
|
|
android:lines="1"
|
||
|
|
android:text="content"
|
||
|
|
android:textColor="@color/white"
|
||
|
|
android:textSize="13dp"
|
||
|
|
/>
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
</LinearLayout>
|