| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?xml version="1.0" encoding="utf-8"?>
- <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:layout_marginTop="15dp"
- android:layout_marginBottom="15dp"
- android:gravity="start|center_vertical"
- android:orientation="horizontal"
- android:paddingLeft="20dp"
- android:paddingRight="20dp">
- <TextView
- android:id="@+id/tv_setting_bar_left"
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:drawablePadding="15dp"
- android:gravity="start|center_vertical"
- android:textColor="@color/black"
- android:textSize="15sp" />
- <TextView
- android:id="@+id/tv_setting_bar_right"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:drawablePadding="15dp"
- android:gravity="end|center_vertical"
- android:textColor="@color/black40"
- android:textSize="14sp" />
- </LinearLayout>
- <View
- android:id="@+id/v_setting_bar_line"
- android:layout_width="match_parent"
- android:layout_height="1px"
- android:layout_gravity="bottom"
- android:background="#ececec" />
- </FrameLayout>
|