pull/32/head
parent
4c304500d0
commit
b2578d8946
@ -1,10 +1,37 @@ |
|||||||
<?xml version="1.0" encoding="utf-8"?> |
<?xml version="1.0" encoding="utf-8"?> |
||||||
<TextView xmlns:android="http://schemas.android.com/apk/res/android" |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
||||||
android:id="@+id/tv_name" |
xmlns:tools="http://schemas.android.com/tools" |
||||||
android:background="@drawable/shape_radius_10dp" |
|
||||||
android:orientation="vertical" |
android:orientation="vertical" |
||||||
android:layout_width="wrap_content" |
android:layout_width="match_parent" |
||||||
android:layout_height="wrap_content" |
android:layout_height="wrap_content" |
||||||
android:layout_margin="5dp" |
android:layout_margin="5dp"> |
||||||
android:gravity="center" |
|
||||||
android:padding="5dp" /> |
<LinearLayout |
||||||
|
android:id="@+id/ll_title" |
||||||
|
android:layout_width="match_parent" |
||||||
|
android:layout_height="wrap_content" |
||||||
|
android:orientation="horizontal" |
||||||
|
tools:ignore="UseCompoundDrawables"> |
||||||
|
|
||||||
|
<TextView |
||||||
|
android:id="@+id/tv_name" |
||||||
|
android:layout_width="0dp" |
||||||
|
android:layout_height="wrap_content" |
||||||
|
android:layout_weight="1" /> |
||||||
|
|
||||||
|
<ImageView |
||||||
|
android:id="@+id/iv_status" |
||||||
|
android:layout_width="24dp" |
||||||
|
android:layout_height="24dp" |
||||||
|
tools:ignore="ContentDescription" /> |
||||||
|
|
||||||
|
</LinearLayout> |
||||||
|
|
||||||
|
<GridLayout |
||||||
|
android:id="@+id/gl_child" |
||||||
|
android:layout_width="match_parent" |
||||||
|
android:layout_height="wrap_content" |
||||||
|
android:columnCount="3" |
||||||
|
android:visibility="gone" /> |
||||||
|
|
||||||
|
</LinearLayout> |
Loading…
Reference in new issue