前提・実現したいこと
Androidでボタンの形や色などを変更したいです。
レイアウトのbackgroundにdrawableのファイルを指定する形だと、種類の異なるボタンの数だけxmlファイルができてしまうので、
それを避けるために、backgroundにattributeファイルの内容を指定できないか試しています。
発生している問題・エラーメッセージ
backgroundにattributeファイルを指定して実行するとエラーが発生します。
android.view.InflateException: Binary XML file line #9: Binary XML file line #9: Error inflating class Button Caused by: android.view.InflateException: Binary XML file line #9: Error inflating class Button Caused by: java.lang.UnsupportedOperationException: Failed to resolve attribute at index 13: TypedValue{t=0x2/d=0x7f040206 a=-1} at android.content.res.TypedArray.getDrawableForDensity(TypedArray.java:946) at android.content.res.TypedArray.getDrawable(TypedArray.java:930) at android.view.View.<init>(View.java:5017) at android.widget.TextView.<init>(TextView.java:875) at android.widget.Button.<init>(Button.java:166) at android.widget.Button.<init>(Button.java:141) at androidx.appcompat.widget.AppCompatButton.<init>(AppCompatButton.java:72) at androidx.appcompat.widget.AppCompatButton.<init>(AppCompatButton.java:68) at androidx.appcompat.app.AppCompatViewInflater.createButton(AppCompatViewInflater.java:192) at androidx.appcompat.app.AppCompatViewInflater.createView(AppCompatViewInflater.java:111) at androidx.appcompat.app.AppCompatDelegateImpl.createView(AppCompatDelegateImpl.java:1407) at androidx.appcompat.app.AppCompatDelegateImpl.onCreateView(AppCompatDelegateImpl.java:1457) at android.view.LayoutInflater$FactoryMerger.onCreateView(LayoutInflater.java:189) at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:772) at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:730) at android.view.LayoutInflater.rInflate(LayoutInflater.java:863) at android.view.LayoutInflater.rInflateChildren(LayoutInflater.java:824) at android.view.LayoutInflater.rInflate(LayoutInflater.java:866) at android.view.LayoutInflater.rInflateChildren(LayoutInflater.java:824) at android.view.LayoutInflater.rInflate(LayoutInflater.java:866) at android.view.LayoutInflater.rInflateChildren(LayoutInflater.java:824) at android.view.LayoutInflater.inflate(LayoutInflater.java:515) at android.view.LayoutInflater.inflate(LayoutInflater.java:423) at jp.greatteacher.rokuryuapp_android.Top.TopFragment.onCreateView(TopFragment.kt:44) at androidx.fragment.app.Fragment.performCreateView(Fragment.java:2600) at androidx.fragment.app.FragmentManagerImpl.moveToState(FragmentManagerImpl.java:881) at androidx.fragment.app.FragmentManagerImpl.moveFragmentToExpectedState(FragmentManagerImpl.java:1238) at androidx.fragment.app.FragmentManagerImpl.moveToState(FragmentManagerImpl.java:1303) at androidx.fragment.app.BackStackRecord.executeOps(BackStackRecord.java:439) at androidx.fragment.app.FragmentManagerImpl.executeOps(FragmentManagerImpl.java:2079) at androidx.fragment.app.FragmentManagerImpl.executeOpsTogether(FragmentManagerImpl.java:1869) at androidx.fragment.app.FragmentManagerImpl.removeRedundantOperationsAndExecute(FragmentManagerImpl.java:1824) at androidx.fragment.app.FragmentManagerImpl.execPendingActions(FragmentManagerImpl.java:1727) at androidx.fragment.app.FragmentManagerImpl.dispatchStateChange(FragmentManagerImpl.java:2663) at androidx.fragment.app.FragmentManagerImpl.dispatchActivityCreated(FragmentManagerImpl.java:2613) at androidx.fragment.app.FragmentController.dispatchActivityCreated(FragmentController.java:246) at androidx.fragment.app.FragmentActivity.onStart(FragmentActivity.java:542) at androidx.appcompat.app.AppCompatActivity.onStart(AppCompatActivity.java:201) at android.app.Instrumentation.callActivityOnStart(Instrumentation.java:1392) at android.app.Activity.performStart(Activity.java:7157) at android.app.ActivityThread.handleStartActivity(ActivityThread.java:2943) at android.app.servertransaction.TransactionExecutor.performLifecycleSequence(TransactionExecutor.java:180) at android.app.servertransaction.TransactionExecutor.cycleToPath(TransactionExecutor.java:165) at android.app.servertransaction.TransactionExecutor.executeLifecycleState(TransactionExecutor.java:142)
該当のソースコード
layout.xml
xml
1<?xml version="1.0" encoding="utf-8"?> 2<LinearLayout 3 xmlns:android="http://schemas.android.com/apk/res/android" 4 xmlns:app="http://schemas.android.com/apk/res-auto" 5 xmlns:tools="http://schemas.android.com/tools" 6 android:layout_width="match_parent" 7 android:layout_height="match_parent" 8 android:orientation="vertical" 9 <Button android:layout_width="wrap_content" 10 android:layout_height="wrap_content" 11 android:text="テスト" 12 android:background="?attr/test"/> 13</LinearLayout>
attr.xml
xml
1<resources> 2 <declare-styleable name="TestCustom"> 3 <attr name="test" format="reference" /> 4 </declare-styleable> 5</resources>
styles.xml
xml
1<resources> 2 <style name="test"> 3 <item name="android:strokeColor">#ED586D</item> 4 <item name="android:strokeWidth">2</item> 5 <item name="android:solidColor">#ffffff</item> 6 <item name="android:radius">30dp</item> 7 </style> 8</resources>
不足している情報などありましたら教えていただけたらと思います。
よろしくお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/02 01:00
2019/12/02 01:16
2019/12/02 01:37
2019/12/02 13:03
2019/12/04 09:14