aboutsummaryrefslogtreecommitdiffstats
path: root/apps/SdkController/SdkControllerApp/res/layout/sensor_row.xml
blob: ca167a72ed08fc14a8ce6eb18c2416f3a44013f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<TableRow xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <CheckBox
        android:id="@+id/row_checkbox"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginRight="10dp"
        android:saveEnabled="false"
        android:text="Some CheckBox"
        tools:ignore="HardcodedText" />

    <TextView
        android:id="@+id/row_textview"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:textAppearance="?android:attr/textAppearanceSmall" />

</TableRow>