22 lines
729 B
XML
22 lines
729 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical" >
|
|
|
|
<TextView
|
|
android:id="@+id/FolderTitle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="5dip"
|
|
android:layout_marginTop="5dip"
|
|
android:singleLine="true"
|
|
android:textStyle="bold" />
|
|
|
|
<TextView
|
|
android:id="@+id/FolderSubTitle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="10dip" />
|
|
|
|
</LinearLayout> |