item_tabke_part.xml
896 Bytes
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/white">
<ImageView
android:id="@+id/icon_img"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_margin="15dp"
android:src="@drawable/ic_icon"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="用户"
android:layout_toRightOf="@id/icon_img"
android:layout_centerVertical="true"
/>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_alignParentBottom="true"
android:background="@color/line"
/>
</RelativeLayout>