28 lines
927 B
XML
28 lines
927 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:id="@+id/rootView"
|
||
|
android:layout_width="108dp"
|
||
|
android:layout_height="96dp"
|
||
|
android:layout_marginTop="12dp"
|
||
|
android:layout_marginRight="6dp"
|
||
|
android:layout_marginBottom="12dp"
|
||
|
android:background="@drawable/bg_container_f5_raduis_10"
|
||
|
android:gravity="center"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/img"
|
||
|
android:layout_width="40dp"
|
||
|
android:layout_height="40dp"
|
||
|
android:src="@mipmap/pic_station_1" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/title"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginTop="12dp"
|
||
|
android:text="智慧种植"
|
||
|
android:textColor="@color/color_txt_black"
|
||
|
android:textSize="14sp" />
|
||
|
|
||
|
</LinearLayout>
|