これは私のコードです。アプリケーションに変更があったことはありません。で作成しましたresources/drawable
。color
textなどfonts
を変更して、すべてのコンポーネントのスタイルにテーマを動的に適用shapes
するにはどうすればよいですか?
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval" android:padding="20dp">
<solid android:color="#FFA500"/>
<corners android:bottomRightRadius="50dp" android:bottomLeftRadius="50dp"
android:topLeftRadius="50dp" android:topRightRadius="50dp"/>
<stroke android:color="#FFA500" android:dashWidth="50dp" />
</shape>