diff options
author | Marco Jacob <mjacob@union06.de> | 2012-08-09 23:11:28 +0200 |
---|---|---|
committer | Marco Jacob <mjacob@union06.de> | 2012-08-09 23:11:28 +0200 |
commit | 80902d9e23284b626ff77f3795b91fd5ee205ed1 (patch) | |
tree | 0dec22119f2d9c3fcf6c32437c144547bb175d93 /main | |
parent | 6a16f9dda1bb3dd6f27fcffb1af7673cb41fb692 (diff) | |
download | cgeo-80902d9e23284b626ff77f3795b91fd5ee205ed1.zip cgeo-80902d9e23284b626ff77f3795b91fd5ee205ed1.tar.gz cgeo-80902d9e23284b626ff77f3795b91fd5ee205ed1.tar.bz2 |
fixes #1939 - corrected SimpleDirChooser layout
Diffstat (limited to 'main')
-rw-r--r-- | main/res/layout/simple_dir_chooser.xml | 2 | ||||
-rw-r--r-- | main/res/layout/simple_dir_item.xml | 10 |
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> |