Blame view
app/src/main/res/layout/layout_sns_search_row.xml
2.98 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 25 26 27 |
<?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="143dp"
android:orientation="vertical">
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@android:color/darker_gray" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="140dp"
android:background="@android:color/white"
android:orientation="horizontal">
<LinearLayout
android:layout_width="80dp"
android:layout_height="match_parent"
android:padding="8dp">
<ImageView
android:id="@+id/imv_user_icon"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white"
|
|
cf00f22ab
|
28 |
android:src="@drawable/ic_ava" /> |
|
7f095a929
|
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 |
</LinearLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_toLeftOf="@+id/layout_type_user"
android:paddingBottom="16dp"
android:paddingTop="16dp">
<TextView
android:id="@+id/tv_title"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="初心者でR61を走ります"
android:textColor="@android:color/black"
android:textSize="18sp" />
</LinearLayout>
<LinearLayout
android:id="@+id/layout_type_user"
android:layout_width="80dp"
android:layout_height="match_parent"
android:layout_alignParentRight="true"
android:orientation="vertical"
android:weightSum="100">
<ImageView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_margin="8dp"
android:layout_weight="50"
android:background="@android:color/white"
android:src="@drawable/ic_1st" />
<ImageView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_margin="8dp"
android:layout_weight="50"
android:background="@android:color/white"
android:src="@drawable/ic_1st" />
</LinearLayout>
</RelativeLayout>
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="2dp"
android:background="@android:color/black" />
</LinearLayout>
|