You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
902 B
XML
30 lines
902 B
XML
|
2 years ago
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android">
|
||
|
|
|
||
|
|
<data>
|
||
|
|
|
||
|
|
</data>
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:orientation="horizontal"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="35dp"
|
||
|
|
android:layout_marginTop="5dp"
|
||
|
|
android:background="@color/bg1">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="100dp"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:text="1"
|
||
|
|
style="@style/item_style"/>
|
||
|
|
<View
|
||
|
|
android:layout_width="2dp"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:background="@color/white" />
|
||
|
|
<TextView
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:text="TextView"
|
||
|
|
style="@style/item_style"/>
|
||
|
|
</LinearLayout>
|
||
|
|
</layout>
|