2013-04-23 19:21:48 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:orientation="vertical" >
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical" >
|
|
|
|
|
|
|
|
<TextView
|
2013-06-22 12:45:05 +00:00
|
|
|
android:id="@+id/FolderTitle"
|
2013-04-23 19:21:48 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="5dip"
|
|
|
|
android:layout_marginTop="5dip"
|
|
|
|
android:singleLine="true"
|
2013-06-22 12:45:05 +00:00
|
|
|
android:text="Title"
|
2013-04-23 19:21:48 +00:00
|
|
|
android:textStyle="bold" />
|
|
|
|
|
|
|
|
<TextView
|
2013-06-22 12:45:05 +00:00
|
|
|
android:id="@+id/FolderSubTitle"
|
2013-04-23 19:21:48 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="10dip"
|
2013-06-22 12:45:05 +00:00
|
|
|
android:text="Subtitle" />
|
2013-04-23 19:21:48 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|