TextView の contentBg スタイルに赤色を定義しました。親スタイルからスタイル名 myContentNew を変更または名前変更して、TextView の色を赤から青に変更できますか? TextView スタイルの name-contentBG は変更しないでください。それはアンドロイドスタイルで可能ですか?
<RelativeLayout
style="@style/myContent"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView
style="@style/contentBG"
android:layout_width="fill_parent"
android:layout_height="fill_parent"/>
</RelativeLayout>
私のコードは以下のようになります
<RelativeLayout
style="@style/myContentNew"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView
style="@style/contentBG"
android:layout_width="fill_parent"
android:layout_height="fill_parent"/>
</RelativeLayout>
添付の画像で明確なアイデアを得ることができます。
CSSのように:
.myContent .contentBg{background-color:red}
.myContentNew .contentBg{background-color:blue}
ありがとう