123456789101112131415161718192021222324 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="horizontal">
-
- <TextView
- android:id="@+id/tv_device_id"
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:gravity="center"
- android:paddingBottom="5dp"
- android:paddingTop="5dp"/>
-
- <TextView
- android:id="@+id/tv_count"
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:gravity="center"
- android:paddingBottom="5dp"
- android:paddingTop="5dp"/>
- </LinearLayout>
|