2014-08-27 05:30:53 -04:00
|
|
|
<?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="vertical" >
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/foldableControl"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:clickable="true"
|
|
|
|
android:orientation="horizontal" >
|
|
|
|
|
2014-08-27 05:48:49 -04:00
|
|
|
<ImageView
|
2014-08-27 05:30:53 -04:00
|
|
|
android:id="@+id/foldableIcon"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_marginRight="10dp"
|
2014-08-28 17:46:56 -04:00
|
|
|
android:src="?attr/iconActionExpand" />
|
2014-08-27 05:30:53 -04:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/foldableText"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:text=""
|
2014-08-28 17:46:56 -04:00
|
|
|
android:textColor="?android:attr/textColorTertiary" />
|
2014-08-27 05:30:53 -04:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/foldableContainer"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
2014-08-29 10:17:57 -04:00
|
|
|
android:visibility="invisible" />
|
2014-08-27 05:30:53 -04:00
|
|
|
|
|
|
|
</LinearLayout>
|