diff options
| author | Bananeweizen <bananeweizen@gmx.de> | 2013-09-20 18:38:58 +0200 |
|---|---|---|
| committer | Bananeweizen <bananeweizen@gmx.de> | 2013-09-20 18:38:58 +0200 |
| commit | 27b827d382646796955007c2eb83a09016e16562 (patch) | |
| tree | 60bdfa3fa68a85ecd7ec934c218e5fca2c44c5c2 /main/res/layout | |
| parent | 9836695c45ef2e63f010a7493cee08cfcf78aa9b (diff) | |
| download | cgeo-27b827d382646796955007c2eb83a09016e16562.zip cgeo-27b827d382646796955007c2eb83a09016e16562.tar.gz cgeo-27b827d382646796955007c2eb83a09016e16562.tar.bz2 | |
lint: ignore compass mini view in pixels
* currently the layout matches the bitmap drawing code, therefore
silencing the warning
* nevertheless we may want to implement something different there
without using a selfmade view
Diffstat (limited to 'main/res/layout')
| -rw-r--r-- | main/res/layout/cacheslist_item.xml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/main/res/layout/cacheslist_item.xml b/main/res/layout/cacheslist_item.xml index 3bd556b..744ca30 100644 --- a/main/res/layout/cacheslist_item.xml +++ b/main/res/layout/cacheslist_item.xml @@ -1,6 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:cc="http://schemas.android.com/apk/res/cgeo.geocaching" + xmlns:tools="http://schemas.android.com/tools" android:id="@+id/one_cache" android:layout_width="fill_parent" android:layout_height="wrap_content" @@ -110,7 +111,8 @@ android:minHeight="28px" android:minWidth="28px" android:visibility="gone" - cc:skin="?compass" /> + cc:skin="?compass" + tools:ignore="PxUsage" /> <ImageView android:id="@+id/dirimg" @@ -123,7 +125,8 @@ android:minHeight="28px" android:minWidth="28px" android:src="@null" - android:visibility="gone" /> + android:visibility="gone" + tools:ignore="PxUsage" /> </RelativeLayout> <!-- inventory and favorites --> |
