23 lines
740 B
XML
23 lines
740 B
XML
|
<?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="wrap_content"
|
||
|
android:layout_marginTop="12dp"
|
||
|
android:layout_marginBottom="12dp"
|
||
|
android:gravity="center_horizontal"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/img"
|
||
|
android:layout_width="44dp"
|
||
|
android:layout_height="44dp" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/title"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="智慧种植"
|
||
|
android:textColor="@color/color_txt_black"
|
||
|
android:textSize="12sp" />
|
||
|
|
||
|
</LinearLayout>
|