392551531d897e640bc665bab9373b85c4a60fb3.svn-base 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent">
  6. <LinearLayout
  7. android:layout_width="match_parent"
  8. android:layout_height="wrap_content"
  9. android:layout_gravity="center_vertical"
  10. android:layout_marginTop="15dp"
  11. android:layout_marginBottom="15dp"
  12. android:gravity="start|center_vertical"
  13. android:orientation="horizontal"
  14. android:paddingLeft="20dp"
  15. android:paddingRight="20dp">
  16. <TextView
  17. android:id="@+id/tv_setting_bar_left"
  18. android:layout_width="0dp"
  19. android:layout_height="match_parent"
  20. android:layout_weight="1"
  21. android:drawablePadding="15dp"
  22. android:gravity="start|center_vertical"
  23. android:textColor="@color/black"
  24. android:textSize="15sp" />
  25. <TextView
  26. android:id="@+id/tv_setting_bar_right"
  27. android:layout_width="wrap_content"
  28. android:layout_height="wrap_content"
  29. android:drawablePadding="15dp"
  30. android:gravity="end|center_vertical"
  31. android:textColor="@color/black40"
  32. android:textSize="14sp" />
  33. </LinearLayout>
  34. <View
  35. android:id="@+id/v_setting_bar_line"
  36. android:layout_width="match_parent"
  37. android:layout_height="1px"
  38. android:layout_gravity="bottom"
  39. android:background="#ececec" />
  40. </FrameLayout>