現在アプリに、ユーザーが好きなテーマカラーを選んでUIに反映できるような機能を実装したいと考えています。
https://qiita.com/s17er/items/04a080181c860ea84694
http://mycode.snow69it.net/159/
上記二つのページを参考に、以下のようなコードで色を指定しました。
attr.xml
XML
1<?xml version="1.0" encoding="utf-8"?> 2<resources> 3 <declare-styleable name="MyTheme"> 4 <attr name="colorPrimary" format="color" /> 5 <attr name="colorPrimaryDark" format="color" /> 6 <attr name="colorPrimaryLight" format="color" /> 7 <attr name="colorAccent" format="color" /> 8 </declare-styleable> 9</resources>
style.xml
XML
1 <style name="MyCustomTheme" parent="Theme.AppCompat.Light.NoActionBar"> 2 </style> 3 4 <style name="MyCustomTheme.pink" parent="MyCustomTheme"> 5 <item name="colorPrimary">#eb6ea0</item> 6 <item name="colorPrimaryDark">#b63d72</item> 7 <item name="colorPrimaryLight">#ffa0d1</item> 8 <item name="colorAccent">#9f166a</item> 9 </style> 10 11 <style name="MyCustomTheme.blue" parent="MyCustomTheme"> 12 <item name="colorPrimary">#0068b7</item> 13 <item name="colorPrimaryDark">#003e87</item> 14 <item name="colorPrimaryLight">#5695ea</item> 15 <item name="colorAccent">#fac559</item> 16 </style>
AndroidManifest.xml
XML
1 2 <application 3 android:allowBackup="false" 4 android:icon="@mipmap/ic_launcher" 5 android:label="@string/app_name" 6 android:networkSecurityConfig="@xml/network_security_config" 7 android:roundIcon="@mipmap/ic_launcher_round" 8 android:supportsRtl="true" 9 android:largeHeap="true" 10 android:theme="@style/MyCustomTheme.pink"> 11 <!-- 以下略 --> 12
そして文字色や背景色などに色を指定するときは
xml
1 2<TextView 3 android:layout_width="wrap_content" 4 android:layout_height="wrap_content" 5 android:gravity="center" 6 android:paddingVertical="10dp" 7 android:text="@string/text1" 8 android:textColor="?attr/colorPrimaryDark" 9 android:textSize="20sp" /> 10
というように**?attr/colorPrimaryDark**のように指定しました。
しかし、エミュレーターを起動すると、最初の画面から次の画面へと遷移するというときに、クラッシュしてしまいました。
下記のようなエラー文が表示されていました。
E/AndroidRuntime: FATAL EXCEPTION: main Process: jp.co.examplenet.appsample, PID: 4015 java.lang.RuntimeException: Unable to start activity ComponentInfo{jp.co.examplenet.appsample/jp.co.examplenet.appsample.MainActivity2}: android.view.InflateException: Binary XML file line #138: Binary XML file line #138: Error inflating class TextView
MainActivity2のxmlファイルの138行目は上記のように**android:textColor="?attr/colorPrimaryDark"**と指定したテキストビューのタグの開始位置を示していました。
このような色の指定は、MainActivity2に遷移する前のMainActivity1では期待通りに指定した色が表現されたのですが、何故MainActivity2を開くにあたってクラッシュしたのか、未だ理解できていません。
よろしければ、クラッシュしてしまう原因や、解決法などにお心当たりがある方がいらっしゃいましたら、ご教示頂けると助かります。
宜しくお願い致します。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。