SwitchCompat
Android 5.0 で Switch ウィジェットを実装するために導入された新しい機能について読みました。同じものを使用してみましたが、下の画像のように描画可能なサム画像が表示されません。
私のXMLコードは次のとおりです。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="5dp">
<android.support.v7.widget.SwitchCompat
android:id="@+id/sampleSwitch"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:showText="false"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginTop="20dp"
android:text="@string/action" />
<TextView
android:id="@+id/switchStatus"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/sampleSwitch"
android:layout_marginTop="22dp"
android:text="@string/status"
android:textAppearance="?android:attr/textAppearanceMedium" />
</RelativeLayout>
上記のレイアウトのプレビュー デザイン (Eclipse のグラフィカル レイアウト タブ) でサム イメージを表示できますが、コードを実行するとイメージが表示されません。
デザインのプレビュー
これは私が得る例外です
boolean android.graphics.drawable.Drawable.getPadding(android.graphics.Rect)
java.lang.NullPointerException: null オブジェクト参照で仮想メソッド ' ' を呼び出そうとしています
誰かが問題を解決するのを手伝ってくれますか?