summaryrefslogtreecommitdiff
path: root/BenchmarkFramework/app/src/main/res/layout/listview.xml
blob: d1cd1150bc9aca35c8feaf2268b9eb67b6dd31cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent" android:layout_height="match_parent">
    <TextView android:id="@+id/itemText" android:layout_width="wrap_content"
        android:layout_height="wrap_content" android:layout_alignParentLeft="true"
        android:layout_alignParentBottom="true"
        android:layout_alignParentTop="true"/>
    <CheckBox android:id="@+id/itemCheckBox" android:layout_width="wrap_content"
        android:layout_height="wrap_content" android:layout_alignParentRight="true"
        android:layout_toRightOf="@id/itemText"
        android:layout_alignParentBottom="true"
        android:buttonTint="#3366CC"/>
</RelativeLayout>