aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--main/res/layout/simple_dir_chooser.xml2
-rw-r--r--main/res/layout/simple_dir_item.xml10
2 files changed, 6 insertions, 6 deletions
diff --git a/main/res/layout/simple_dir_chooser.xml b/main/res/layout/simple_dir_chooser.xml
index 491e0a2..f8e58e6 100644
--- a/main/res/layout/simple_dir_chooser.xml
+++ b/main/res/layout/simple_dir_chooser.xml
@@ -26,7 +26,7 @@
</LinearLayout>
<ListView
android:layout_height="fill_parent"
- android:layout_width="wrap_content"
+ android:layout_width="fill_parent"
android:layout_weight="100"
android:id="@+id/android:list" />
<LinearLayout
diff --git a/main/res/layout/simple_dir_item.xml b/main/res/layout/simple_dir_item.xml
index ec4cd28..6261127 100644
--- a/main/res/layout/simple_dir_item.xml
+++ b/main/res/layout/simple_dir_item.xml
@@ -8,14 +8,14 @@
android:id="@+id/CheckBox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:checked="false" />
+ android:checked="false"/>
<TextView
- android:text="@+id/TextView01"
android:id="@+id/TextView01"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
android:singleLine="true"
android:textStyle="bold"
android:layout_marginTop="5dip"
- android:layout_marginLeft="5dip" />
+ android:layout_marginLeft="5dip"
+ android:textColor="?text_color"/>
</LinearLayout>