diff options
| author | Marco Jacob <mjacob@union06.de> | 2012-07-20 23:23:51 +0200 |
|---|---|---|
| committer | Marco Jacob <mjacob@union06.de> | 2012-07-20 23:23:51 +0200 |
| commit | 13006ac8183a5191b690a088b95230ea74506a45 (patch) | |
| tree | cc9e0ca95c55502df7d08e5ad0e4bc9767782a9c /main/res/layout/simple_dir_item.xml | |
| parent | 9ca1feffb7476edb91f4a81a2200631fa4f7ed2d (diff) | |
| download | cgeo-13006ac8183a5191b690a088b95230ea74506a45.zip cgeo-13006ac8183a5191b690a088b95230ea74506a45.tar.gz cgeo-13006ac8183a5191b690a088b95230ea74506a45.tar.bz2 | |
fixes #1794 - added gpx export dir setting with SimpleDirChooser
Diffstat (limited to 'main/res/layout/simple_dir_item.xml')
| -rw-r--r-- | main/res/layout/simple_dir_item.xml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/main/res/layout/simple_dir_item.xml b/main/res/layout/simple_dir_item.xml new file mode 100644 index 0000000..ec4cd28 --- /dev/null +++ b/main/res/layout/simple_dir_item.xml @@ -0,0 +1,21 @@ +<?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="horizontal" + android:background="?background_color" > + <CheckBox android:text="" + android:id="@+id/CheckBox" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:checked="false" /> + <TextView + android:text="@+id/TextView01" + android:id="@+id/TextView01" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:singleLine="true" + android:textStyle="bold" + android:layout_marginTop="5dip" + android:layout_marginLeft="5dip" /> +</LinearLayout> |
