Blame view
app/src/main/res/layout/layout_sns_member_row.xml
1.72 KB
7f095a929
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
<?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="82dp" android:background="@android:color/white" android:orientation="vertical"> <View android:layout_width="match_parent" android:layout_height="1dp" android:background="@android:color/black" /> <LinearLayout android:layout_width="match_parent" android:layout_height="80dp" android:orientation="horizontal"> <LinearLayout android:layout_width="100dp" android:layout_height="match_parent" android:gravity="center"> <ImageView android:id="@+id/imv_user_icon" android:layout_width="60dp" android:layout_height="60dp" |
cf00f22ab
|
25 |
android:background="@drawable/ic_ava"/> |
7f095a929
|
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
</LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <TextView android:id="@+id/tv_username" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="8dp" android:layout_marginLeft="4dp" android:layout_marginRight="4dp" android:text="..." android:textColor="@android:color/black" android:textSize="18sp" /> </LinearLayout> </LinearLayout> <View android:layout_width="match_parent" android:layout_height="1dp" android:background="@android:color/black" /> </LinearLayout> |