2013年4月1日月曜日

うるさいLint先生にXMLの警告を無視させる方法

xmlns:tools="http://schemas.android.com/tools"
を定義して、
tools:ignore="ContentDescription,PxUsage"
無効にしたいチェックを記述します。

  1. <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">  
  2.   
  3.     <imageview android:layout_width="match_parent" android:layout_height="1px" android:background="@android:drawable/divider_horizontal_dark">  
  4.   
  5.     <imagebutton android:id="@+id/prev" style="@android:style/MediaButton.Previous" android:visibility="gone">  
  6.   
  7. </imagebutton></imageview></relativelayout>  

ImageView / ImageButton の contentDescriptionとか記述めんどくさいし。
セパレータに使用している ImageViewの heightは ピクセル(px)で定義したいし。