[Android] Decouple the About fragment from the FolderBrowserAdapter. Now it uses its own independent adapter (I have no idea why this wasn't done in the first place).

This commit is contained in:
Lioncash
2013-08-29 12:40:35 -04:00
parent 93ed4adb02
commit 8fd2c32ba6
2 changed files with 87 additions and 11 deletions

View File

@ -2,10 +2,11 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="vertical" >
android:orientation="vertical"
android:padding="6dp">
<TextView
android:id="@+id/FolderTitle"
android:id="@+id/AboutItemTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="5dip"
@ -14,7 +15,7 @@
android:textStyle="bold" />
<TextView
android:id="@+id/FolderSubTitle"
android:id="@+id/AboutItemSubTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dip" />