xref: /aosp_15_r20/sdk/testapps/testSensors/res/layout/one_row.xml (revision 1789df15502f1991eff51ff970dce5df8404dd56)
1<?xml version="1.0" encoding="utf-8"?>
2<TableRow xmlns:android="http://schemas.android.com/apk/res/android"
3    android:layout_width="fill_parent"
4    android:layout_height="fill_parent" >
5
6    <TextView
7        android:id="@+id/row_textview_name"
8        android:layout_width="wrap_content"
9        android:layout_height="wrap_content"
10        android:saveEnabled="false"
11        android:layout_marginRight="10dp"
12        android:textAppearance="?android:attr/textAppearanceSmall" />
13
14    <TextView
15        android:id="@+id/row_textview_value"
16        android:layout_width="fill_parent"
17        android:layout_height="wrap_content"
18        android:layout_weight="1"
19        android:textAppearance="?android:attr/textAppearanceSmall" />
20
21</TableRow>