0
コンテキストアクションバーの色を黒から別の色に変更したい場合や、下線のピンク色の色を変更したい場合もあります。 http://i.stack.imgur.com/kcSL9.pngコンテキストアクションバーとアンダーラインの背景色を変更するにはどうすればよいですか?
コンテキストアクションバーの色を黒から別の色に変更したい場合や、下線のピンク色の色を変更したい場合もあります。 http://i.stack.imgur.com/kcSL9.pngコンテキストアクションバーとアンダーラインの背景色を変更するにはどうすればよいですか?
あなたはCABの背景を変更し、あなたの活動のスタイルで、この行を追加することで色を強調することができます
<item name="actionModeBackground">@drawable/contextual_action_bar_background</item>
contextual_action_bar_background.xml
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:top="-2dp" android:left="-2dp" android:right="-2dp">
<shape>
<solid android:color="@color/action_bar"/>
<stroke android:color="@color/title_blue" android:width="2dp"/>
</shape>
</item>