警告メッセージ
状態:解決済
閲覧数:4,801
投稿日:2013-06-03
更新日:2013-06-03
Should use "sp" instead of "dp" for text sizes
内容
・テキストサイズは、「dp」の代わりに「sp」を利用すべき
対応
・修正前
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:textSize="20dip"
・修正後
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:textSize="20sp"