1234567891011121314151617181920212223242526272829303132333435 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="horizontal"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@mipmap/chat_bg_default">
- <TextView
- android:id="@+id/main_message"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:gravity="center"
- android:drawableTop="@drawable/selector_main_message"
- android:text="@string/main_message"
- />
- <TextView
- android:id="@+id/main_phone"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="@string/main_phoneList"
- android:layout_weight="1"
- android:drawableTop="@drawable/selector_main_phone"
- android:gravity="center"
- />
- <TextView
- android:id="@+id/main_setting"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="@string/main_setting"
- android:layout_weight="1"
- android:drawableTop="@drawable/selector_main_setting"
- android:gravity="center"
- />
- </LinearLayout>
|