37 lines
1017 B
XML
37 lines
1017 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="50dp"
|
|
>
|
|
|
|
<ImageView
|
|
android:id="@+id/thumb"
|
|
android:layout_width="18dp"
|
|
android:layout_height="18dp"
|
|
android:layout_gravity="center_vertical"
|
|
android:scaleType="centerCrop"
|
|
/>
|
|
|
|
<TextView
|
|
android:id="@+id/name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginLeft="30dp"
|
|
android:textColor="@color/textColor"
|
|
android:textSize="14sp"
|
|
/>
|
|
|
|
<ImageView
|
|
android:id="@+id/img"
|
|
android:layout_width="20dp"
|
|
android:layout_height="20dp"
|
|
android:layout_gravity="center_vertical|right"
|
|
/>
|
|
|
|
<View
|
|
style="@style/line2"
|
|
android:layout_gravity="bottom"
|
|
/>
|
|
</FrameLayout> |