• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2
3<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
4              android:orientation="horizontal"
5              android:onClick="itemClicked"
6              android:layout_width="match_parent"
7              android:layout_height="match_parent">
8
9    <CheckBox
10            android:id="@+id/selected"
11            android:onClick="checkboxClicked"
12            android:layout_width="wrap_content"
13            android:layout_height="wrap_content"/>
14
15    <LinearLayout
16            android:orientation="vertical"
17            android:layout_width="match_parent"
18            android:layout_height="wrap_content">
19        <TextView
20                android:id="@+id/text"
21                android:layout_width="match_parent"
22                android:layout_height="wrap_content"/>
23
24        <TextView
25                android:id="@+id/expandedText"
26                android:visibility="gone"
27                android:layout_width="match_parent"
28                android:layout_height="wrap_content"/>
29    </LinearLayout>
30
31</LinearLayout>