|
|
@@ -0,0 +1,31 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<layout xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="80dp"
|
|
|
+ android:layout_height="80dp"
|
|
|
+ android:gravity="center_horizontal"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <FrameLayout
|
|
|
+ android:id="@+id/home_menu_layout"
|
|
|
+ android:layout_width="60dp"
|
|
|
+ android:layout_height="60dp"
|
|
|
+ android:background="@drawable/bg_home_menu_item_land">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/home_menu_iv"
|
|
|
+ android:layout_width="50dp"
|
|
|
+ android:layout_height="50dp"
|
|
|
+ android:layout_gravity="center"/>
|
|
|
+ </FrameLayout>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/home_menu_tv"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="2.5dp"
|
|
|
+ android:textColor="@color/color_d7d2d2"
|
|
|
+ android:textSize="12.5sp" />
|
|
|
+ </LinearLayout>
|
|
|
+</layout>
|