|
|
@@ -2,34 +2,35 @@
|
|
|
<LinearLayout
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content">
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
|
|
<LinearLayout
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:orientation="horizontal"
|
|
|
- android:weightSum="5">
|
|
|
+ android:gravity="center"
|
|
|
+ android:orientation="horizontal">
|
|
|
|
|
|
<View
|
|
|
android:layout_width="0dp"
|
|
|
android:layout_height="2dp"
|
|
|
- android:layout_marginTop="5dp"
|
|
|
- android:layout_weight="2"
|
|
|
+ android:layout_weight="1"
|
|
|
android:background="@color/colorPrimary"/>
|
|
|
|
|
|
<TextView
|
|
|
- android:layout_width="0dp"
|
|
|
+ android:id="@+id/divider_text"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_weight="1"
|
|
|
- android:text="text"
|
|
|
+ android:layout_marginStart="10dp"
|
|
|
+ android:layout_marginEnd="10dp"
|
|
|
+ tools:text="texsdafasdfasdfasdfasdft"
|
|
|
android:textAlignment="center"
|
|
|
/>
|
|
|
|
|
|
<View
|
|
|
android:layout_width="0dp"
|
|
|
android:layout_height="2dp"
|
|
|
- android:layout_marginTop="5dp"
|
|
|
- android:layout_weight="2"
|
|
|
+ android:layout_weight="1"
|
|
|
android:background="@color/colorPrimary"/>
|
|
|
|
|
|
</LinearLayout>
|