main_bottom.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="horizontal"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:background="@mipmap/chat_bg_default">
  7. <TextView
  8. android:id="@+id/main_message"
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content"
  11. android:layout_weight="1"
  12. android:gravity="center"
  13. android:drawableTop="@drawable/selector_main_message"
  14. android:text="@string/main_message"
  15. />
  16. <TextView
  17. android:id="@+id/main_phone"
  18. android:layout_width="match_parent"
  19. android:layout_height="wrap_content"
  20. android:text="@string/main_phoneList"
  21. android:layout_weight="1"
  22. android:drawableTop="@drawable/selector_main_phone"
  23. android:gravity="center"
  24. />
  25. <TextView
  26. android:id="@+id/main_setting"
  27. android:layout_width="match_parent"
  28. android:layout_height="wrap_content"
  29. android:text="@string/main_setting"
  30. android:layout_weight="1"
  31. android:drawableTop="@drawable/selector_main_setting"
  32. android:gravity="center"
  33. />
  34. </LinearLayout>