2013年4月27日土曜日
2013年4月1日月曜日
うるさいLint先生にXMLの警告を無視させる方法
xmlns:tools="http://schemas.android.com/tools"
を定義して、
tools:ignore="ContentDescription,PxUsage"
無効にしたいチェックを記述します。
ImageView / ImageButton の contentDescriptionとか記述めんどくさいし。
セパレータに使用している ImageViewの heightは ピクセル(px)で定義したいし。
を定義して、
tools:ignore="ContentDescription,PxUsage"
無効にしたいチェックを記述します。
- <relativelayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" tools:ignore="ContentDescription,PxUsage" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#ffffff">
- <imageview android:layout_width="match_parent" android:layout_height="1px" android:background="@android:drawable/divider_horizontal_dark">
- <imagebutton android:id="@+id/prev" style="@android:style/MediaButton.Previous" android:visibility="gone">
- </imagebutton></imageview></relativelayout>
ImageView / ImageButton の contentDescriptionとか記述めんどくさいし。
セパレータに使用している ImageViewの heightは ピクセル(px)で定義したいし。
登録:
投稿 (Atom)