Commit 2dec5d3621db1854c86046a76ecc2621c17516af

Authored by 陶汉栋
2 parents 6d719af4 2923e797

Merge branch 'yxb_dev' of http://git.shunzhi.net/taohd/parentwork into developer

Showing 1 changed file with 20 additions and 2 deletions   Show diff stats
app/src/main/res/layout/fragment_mine.xml
... ... @@ -5,9 +5,27 @@
5 5 tools:context="com.shunzhi.parent.ui.fragment.MineFragment">
6 6  
7 7 <!-- TODO: Update blank fragment layout -->
8   - <TextView
  8 + <LinearLayout
9 9 android:layout_width="match_parent"
10 10 android:layout_height="match_parent"
11   - android:text="@string/hello_blank_fragment" />
  11 + android:orientation="vertical">
  12 +
  13 + <LinearLayout
  14 + android:id="@+id/top_layout"
  15 + android:layout_width="match_parent"
  16 + android:layout_height="wrap_content"
  17 + android:background="@color/txt_black"
  18 + android:orientation="vertical">
  19 +
  20 + <TextView
  21 + android:layout_width="match_parent"
  22 + android:layout_height="wrap_content"
  23 + android:layout_gravity="center"
  24 + android:gravity="center"
  25 + android:text="个人中心"
  26 + android:textColor="#FC5B6A"
  27 + />
  28 + </LinearLayout>
  29 + </LinearLayout>
12 30  
13 31 </FrameLayout>
... ...