aboutsummaryrefslogtreecommitdiffstats
path: root/main/res/layout/simple_dir_item.xml
diff options
context:
space:
mode:
authorBananeweizen <bananeweizen@gmx.de>2013-01-28 07:10:49 +0100
committerBananeweizen <bananeweizen@gmx.de>2013-01-28 07:10:49 +0100
commit9b382b09a4586022183c749ff603285b6b732711 (patch)
tree9c79eda8d0dc1202a6d7e78c64054acfc8a08245 /main/res/layout/simple_dir_item.xml
parentaf6345031c90b20f0434992c58827f84de080755 (diff)
downloadcgeo-9b382b09a4586022183c749ff603285b6b732711.zip
cgeo-9b382b09a4586022183c749ff603285b6b732711.tar.gz
cgeo-9b382b09a4586022183c749ff603285b6b732711.tar.bz2
lint cleanups
* unused resources * textIsSelectable
Diffstat (limited to 'main/res/layout/simple_dir_item.xml')
-rw-r--r--main/res/layout/simple_dir_item.xml37
1 files changed, 21 insertions, 16 deletions
diff --git a/main/res/layout/simple_dir_item.xml b/main/res/layout/simple_dir_item.xml
index 6261127..e268943 100644
--- a/main/res/layout/simple_dir_item.xml
+++ b/main/res/layout/simple_dir_item.xml
@@ -1,21 +1,26 @@
<?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:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ android:background="?background_color"
+ android:orientation="horizontal" >
+
+ <CheckBox
android:id="@+id/CheckBox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:checked="false"/>
- <TextView
- android:id="@+id/TextView01"
- 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:textColor="?text_color"/>
-</LinearLayout>
+ android:checked="false"
+ android:text="" />
+
+ <TextView
+ android:id="@+id/TextView01"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:layout_marginLeft="5dip"
+ android:layout_marginTop="5dip"
+ android:singleLine="true"
+ android:textColor="?text_color"
+ android:textIsSelectable="false"
+ android:textStyle="bold" />
+
+</LinearLayout> \ No newline at end of file