• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<merge xmlns:android="http://schemas.android.com/apk/res/android">
3
4    <LinearLayout
5        android:layout_width="match_parent"
6        android:layout_height="wrap_content"
7        android:layout_marginBottom="8dp"
8        android:layout_marginLeft="24dp"
9        android:layout_marginRight="24dp"
10        android:layout_marginTop="8dp"
11        android:orientation="horizontal">
12
13        <TextView
14            android:id="@+id/leftTextView"
15            android:layout_width="0dp"
16            android:layout_height="wrap_content"
17            android:layout_weight="1"
18            android:textSize="12sp"/>
19
20        <TextView
21            android:id="@+id/rightTextView"
22            android:layout_width="0dp"
23            android:layout_height="wrap_content"
24            android:layout_weight="1"
25            android:textSize="12sp"/>
26    </LinearLayout>
27
28    <View
29        android:layout_width="match_parent"
30        android:layout_height="@dimen/divider_height"
31        android:layout_gravity="bottom"
32        android:layout_marginLeft="24dp"
33        android:layout_marginRight="24dp"
34        android:background="@color/divider"/>
35</merge>