Androidでメニュー項目の背景色を変更できますか?
誰かこれに解決策があるかどうか私に知らせてください。最後のオプションは明らかにカスタマイズすることですが、カスタマイズせずにテキストの色を変更する方法はありますか。
Androidでメニュー項目の背景色を変更できますか?
誰かこれに解決策があるかどうか私に知らせてください。最後のオプションは明らかにカスタマイズすることですが、カスタマイズせずにテキストの色を変更する方法はありますか。
回答:
あなたのテーマの1つの単純な行:)
<item name="android:actionMenuTextColor">@color/your_color</item>
actionBarStyle
。たとえば、内には含めないでください。それはactionBarStyle
論理的に思えますが、内では機能しません!
<item name="actionMenuTextColor">@color/your_color</item>
するには、Android名前空間を使用しないでください
theme
ツールバーに属性を設定すると、これが機能します。
のようです
<item name="android:itemTextAppearance">@style/myCustomMenuTextAppearance</item>
私のテーマで
<style name="myCustomMenuTextAppearance" parent="@android:style/TextAppearance.Widget.IconMenu.Item">
<item name="android:textColor">@android:color/primary_text_dark</item>
</style>
styles.xmlで、リスト項目のスタイルを変更しますが、メニュー項目は変更しません。
android:itemTextAppearance
属性は、その親であるスタイルの中に配置することができないparent="@android:style/Widget.Holo.ListPopupWindow"
ことが正しく表示されませんので、。親がであるようなトップレベルのスタイルである必要がありますandroid:Theme.Holo.Light.DarkActionBar
。
Theme.Holo
か、Theme.Holo.Light.DarkActionBar
または類似。
の代わりMenuItem
にを使用SpannableString
すると、テキストの色を簡単に変更できますString
。
@Override
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
inflater.inflate(R.menu.your_menu, menu);
int positionOfMenuItem = 0; // or whatever...
MenuItem item = menu.getItem(positionOfMenuItem);
SpannableString s = new SpannableString("My red MenuItem");
s.setSpan(new ForegroundColorSpan(Color.RED), 0, s.length(), 0);
item.setTitle(s);
}
menu.findItem(R.id.menu_item_id);
代わりにmenu.getItem()
新しいツールバーとテーマを使用している場合Theme.AppCompat.Light.NoActionBar
は、次の方法でスタイルを設定できます。
<style name="ToolbarTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:textColorPrimary">@color/my_color1</item>
<item name="android:textColorSecondary">@color/my_color2</item>
<item name="android:textColor">@color/my_color3</item>
</style>`
私が得た結果によると、
android:textColorPrimary
ツールバーの主要なテキストであるあなたの活動の名前を表示するテキストの色です。
android:textColorSecondary
字幕とその他のオプション(3ドット)ボタンのテキスト色です。(はい、このプロパティに従って色が変わりました!)
android:textColor
は、メニューを含む他のすべてのテキストの色です。
最後にテーマをツールバーに設定します
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
app:theme="@style/ToolbarTheme"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:minHeight="?attr/actionBarSize"/>
android:actionMenuTextColor
(stackoverflow.com/a/5538709/423105を参照)。
メニューを使用している場合は<android.support.design.widget.NavigationView />
、以下の行を追加してNavigationView
ください:
app:itemTextColor="your color"
アイコンのcolorTintも利用可能で、アイコンの色もオーバーライドします。そのためには、以下の行を追加する必要があります。
app:itemIconTint="your color"
例:
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
app:itemTextColor="@color/color_white"
app:itemIconTint="@color/color_white"
android:background="@color/colorPrimary"
android:fitsSystemWindows="true"
app:headerLayout="@layout/nav_header_main"
app:menu="@menu/activity_main_drawer"/>
それがあなたを助けることを願っています。
私はプログラムで次のようにそれについて行きました:
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.changeip_card_menu, menu);
for(int i = 0; i < menu.size(); i++) {
MenuItem item = menu.getItem(i);
SpannableString spanString = new SpannableString(menu.getItem(i).getTitle().toString());
spanString.setSpan(new ForegroundColorSpan(Color.BLACK), 0, spanString.length(), 0); //fix the color to white
item.setTitle(spanString);
}
return true;
}
htmlタグを使用して、メニュー項目がインフレートされているときに1つの項目のテキストの色を変更しました。お役に立てれば幸いです。
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_main, menu);
menu.findItem(R.id.main_settings).setTitle(Html.fromHtml("<font color='#ff3824'>Settings</font>"));
return true;
}
AppThemeではなく、単一のツールバーのカスタムメニューの色を作成する最も簡単な方法
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay.MenuBlue">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"/>
</android.support.design.widget.AppBarLayout>
styles.xmlの通常のツールバー
<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar"/>
カスタムツールバースタイル
<style name="AppTheme.AppBarOverlay.MenuBlue">
<item name="actionMenuTextColor">@color/blue</item>
</style>
Kotlinでこれらの拡張機能を作成しました。
fun MenuItem.setTitleColor(color: Int) {
val hexColor = Integer.toHexString(color).toUpperCase().substring(2)
val html = "<font color='#$hexColor'>$title</font>"
this.title = html.parseAsHtml()
}
@Suppress("DEPRECATION")
fun String.parseAsHtml(): Spanned {
return if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
Html.fromHtml(this, Html.FROM_HTML_MODE_LEGACY)
} else {
Html.fromHtml(this)
}
}
次のように使用します:
menu.findItem(R.id.main_settings).setTitleColor(Color.RED)
短い答えはYESです。あなたはラッキーです!
そのためには、Androidのデフォルトスタイルの一部のスタイルをオーバーライドする必要があります。
<style name="Theme.IconMenu">
<!-- Menu/item attributes -->
<item name="android:itemTextAppearance">@android:style/TextAppearance.Widget.IconMenu.Item</item>
<item name="android:itemBackground">@android:drawable/menu_selector</item>
<item name="android:itemIconDisabledAlpha">?android:attr/disabledAlpha</item>
<item name="android:horizontalDivider">@android:drawable/divider_horizontal_bright</item>
<item name="android:verticalDivider">@android:drawable/divider_vertical_bright</item>
<item name="android:windowAnimationStyle">@android:style/Animation.OptionsPanel</item>
<item name="android:moreIcon">@android:drawable/ic_menu_more</item>
<item name="android:background">@null</item>
</style>
したがって、メニューのテキストの外観@android:style/TextAppearance.Widget.IconMenu.Item
は、スタイルの定義のNowにあります。
<style name="TextAppearance.Widget.IconMenu.Item" parent="TextAppearance.Small">
<item name="android:textColor">?textColorPrimaryInverse</item>
</style>
これで、システムのリソースのcolorフォルダーを確認すると、問題の色の名前がわかります。
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_enabled="false" android:color="@android:color/bright_foreground_light_disabled" />
<item android:state_window_focused="false" android:color="@android:color/bright_foreground_light" />
<item android:state_pressed="true" android:color="@android:color/bright_foreground_light" />
<item android:state_selected="true" android:color="@android:color/bright_foreground_light" />
<item android:color="@android:color/bright_foreground_light" />
<!-- not selected -->
</selector>
最後に、これがあなたがする必要があることです:
「TextAppearance.Widget.IconMenu.Item」をオーバーライドして、独自のスタイルを作成します。次に、それを独自のセレクターにリンクして、希望する方法にします。これがお役に立てば幸いです。幸運を!
Androidのオプションメニューをカスタマイズして、背景を設定したり、テキストの外観を変更したりできます。メニューの背景とテキストの色は、テーマとスタイルを使用して変更できませんでした。androidソースコード(data \ res \ layout \ icon_menu_item_layout.xml)は、メニューレイアウトに「com.android.internal.view.menu.IconMenuItemView」クラスのカスタムアイテムを使用します。上記のクラスを変更して、メニューをカスタマイズできます。同じことを行うには、LayoutInflaterファクトリクラスを使用して、ビューの背景とテキストの色を設定します。
@Override
public boolean onCreateOptionsMenu(Menu menu) {
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.my_menu, menu);
getLayoutInflater().setFactory(new Factory() {
@Override
public View onCreateView(String name, Context context, AttributeSet attrs) {
if (name .equalsIgnoreCase(“com.android.internal.view.menu.IconMenuItemView”)) {
try{
LayoutInflater f = getLayoutInflater();
final View view = f.createView(name, null, attrs);
new Handler().post(new Runnable() {
public void run() {
// set the background drawable
view .setBackgroundResource(R.drawable.my_ac_menu_background);
// set the text color
((TextView) view).setTextColor(Color.WHITE);
}
});
return view;
} catch (InflateException e) {
} catch (ClassNotFoundException e) {}
}
return null;
}
});
return super.onCreateOptionsMenu(menu);
}
03-23 19:45:25.134: E/AndroidRuntime(26761): java.lang.IllegalStateException: A factory has already been set on this LayoutInflater
コード例をありがとう。私はそれをコンテキストメニューで動作するように変更する必要がありました。これが私の解決策です。
static final Class<?>[] constructorSignature = new Class[] {Context.class, AttributeSet.class};
class MenuColorFix implements LayoutInflater.Factory {
public View onCreateView(String name, Context context, AttributeSet attrs) {
if (name.equalsIgnoreCase("com.android.internal.view.menu.ListMenuItemView")) {
try {
Class<? extends ViewGroup> clazz = context.getClassLoader().loadClass(name).asSubclass(ViewGroup.class);
Constructor<? extends ViewGroup> constructor = clazz.getConstructor(constructorSignature);
final ViewGroup view = constructor.newInstance(new Object[]{context,attrs});
new Handler().post(new Runnable() {
public void run() {
try {
view.setBackgroundColor(Color.BLACK);
List<View> children = getAllChildren(view);
for(int i = 0; i< children.size(); i++) {
View child = children.get(i);
if ( child instanceof TextView ) {
((TextView)child).setTextColor(Color.WHITE);
}
}
}
catch (Exception e) {
Log.i(TAG, "Caught Exception!",e);
}
}
});
return view;
}
catch (Exception e) {
Log.i(TAG, "Caught Exception!",e);
}
}
return null;
}
}
public List<View> getAllChildren(ViewGroup vg) {
ArrayList<View> result = new ArrayList<View>();
for ( int i = 0; i < vg.getChildCount(); i++ ) {
View child = vg.getChildAt(i);
if ( child instanceof ViewGroup) {
result.addAll(getAllChildren((ViewGroup)child));
}
else {
result.add(child);
}
}
return result;
}
@Override
public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) {
LayoutInflater lInflater = getLayoutInflater();
if ( lInflater.getFactory() == null ) {
lInflater.setFactory(new MenuColorFix());
}
super.onCreateContextMenu(menu, v, menuInfo);
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.myMenu, menu);
}
私にとって、これはAndroid 1.6、2.03、4.03で動作します。
ユーレカを見つけた!!
アプリのテーマ:
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="android:actionBarStyle">@style/ActionBarTheme</item>
<!-- backward compatibility -->
<item name="actionBarStyle">@style/ActionBarTheme</item>
</style>
ここにあなたのアクションバーのテーマがあります:
<style name="ActionBarTheme" parent="@style/Widget.AppCompat.Light.ActionBar.Solid.Inverse">
<item name="android:background">@color/actionbar_bg_color</item>
<item name="popupTheme">@style/ActionBarPopupTheme</item
<!-- backward compatibility -->
<item name="background">@color/actionbar_bg_color</item>
</style>
そしてここにあなたのポップアップテーマがあります:
<style name="ActionBarPopupTheme">
<item name="android:textColor">@color/menu_text_color</item>
<item name="android:background">@color/menu_bg_color</item>
</style>
乾杯;)
max.mustermanのおかげで、これがレベル22で機能するようになったソリューションです。
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.menu_main, menu);
SearchManager searchManager = (SearchManager) getSystemService(Context.SEARCH_SERVICE);
MenuItem searchMenuItem = menu.findItem(R.id.search);
SearchView searchView = (SearchView) searchMenuItem.getActionView();
searchView.setSearchableInfo(searchManager.getSearchableInfo(getComponentName()));
searchView.setSubmitButtonEnabled(true);
searchView.setOnQueryTextListener(this);
setMenuTextColor(menu, R.id.displaySummary, R.string.show_summary);
setMenuTextColor(menu, R.id.about, R.string.text_about);
setMenuTextColor(menu, R.id.importExport, R.string.import_export);
setMenuTextColor(menu, R.id.preferences, R.string.settings);
return true;
}
private void setMenuTextColor(Menu menu, int menuResource, int menuTextResource) {
MenuItem item = menu.findItem(menuResource);
SpannableString s = new SpannableString(getString(menuTextResource));
s.setSpan(new ForegroundColorSpan(Color.BLACK), 0, s.length(), 0);
item.setTitle(s);
}
ハードコードColor.BLACK
は、setMenuTextColor
メソッドの追加パラメーターになる可能性があります。また、これはだったメニュー項目にのみ使用しましたandroid:showAsAction="never"
。
プログラムで色を設定できます。
private static void setMenuTextColor(final Context context, final Toolbar toolbar, final int menuResId, final int colorRes) {
toolbar.post(new Runnable() {
@Override
public void run() {
View settingsMenuItem = toolbar.findViewById(menuResId);
if (settingsMenuItem instanceof TextView) {
if (DEBUG) {
Log.i(TAG, "setMenuTextColor textview");
}
TextView tv = (TextView) settingsMenuItem;
tv.setTextColor(ContextCompat.getColor(context, colorRes));
} else { // you can ignore this branch, because usually there is not the situation
Menu menu = toolbar.getMenu();
MenuItem item = menu.findItem(menuResId);
SpannableString s = new SpannableString(item.getTitle());
s.setSpan(new ForegroundColorSpan(ContextCompat.getColor(context, colorRes)), 0, s.length(), 0);
item.setTitle(s);
}
}
});
}
これをテーマに追加するだけです
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:itemTextAppearance">@style/AppTheme.ItemTextStyle</item>
</style>
<style name="AppTheme.ItemTextStyle" parent="@android:style/TextAppearance.Widget.IconMenu.Item">
<item name="android:textColor">@color/orange_500</item>
</style>
API 21でテスト済み
<style name="AppTheme.ItemTextStyle" parent="@android:style/TextAppearance.Widget">
。そうしないと、オーバーフローメニューのテキストが小さすぎるように見えます。また、この手法はAndroid 5以降でのみ機能することにも注意してください。
@Override
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
inflater.inflate(R.menu.search, menu);
MenuItem myActionMenuItem = menu.findItem( R.id.action_search);
SearchView searchView = (SearchView) myActionMenuItem.getActionView();
EditText searchEditText = (EditText) searchView.findViewById(android.support.v7.appcompat.R.id.search_src_text);
searchEditText.setTextColor(Color.WHITE); //You color here
私の状況は、オプションメニューのテキストの色を設定することでした(メインアプリメニューはメニューボタンを押すと表示されました)。
でテストAPI 16でAPPCOMPAT-v7-27.0.2ライブラリAppCompatActivity
用MainActivity
とAppCompat
でアプリケーションのテーマのAndroidManifest.xml。
styles.xml:
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="actionBarPopupTheme">@style/PopupTheme</item>
</style>
<style name="PopupTheme" parent="@style/ThemeOverlay.AppCompat.Light">
<item name="android:textColorSecondary">#f00</item>
</style>
それtextColorSecondary
が他の要素に影響を与えるかどうかはわかりませんが、メニューのテキストの色を制御します。
トピックの例をいくつか検索しましたが、すぐに使用できるスニペットがすべて機能しませんでした。
そのため、appcompat-v7ライブラリのソースコード(特に.aarパッケージのresフォルダー)を使用して調査したいと思いました。
私の場合は.aar依存関係を展開してEclipseを使用しましたが。したがって、デフォルトのスタイルを変更して結果を確認できます。GradleまたはAndroid Studioで直接使用するためにライブラリを分解する方法がわかりません。それは調査の別のスレッドに値します。
だから私の目的は、res / values / values.xmlファイルのどの色がメニューテキストに使用されているかを見つけることでした(色がそこにあるとほぼ確信していました)。
#f00
値を割り当てました。secondary_text_default_material_light
カラーアイテムで終了しました。@color/abc_secondary_text_material_light
。Base.ThemeOverlay.AppCompat.Light
とPlatform.AppCompat.Light
。android:textColorSecondary
とandroid:textColorTertiary
してBase.ThemeOverlay.AppCompat.Light
。android:textColorSecondary
。Theme.AppCompat.Light
なくがあったためThemeOverlay.AppCompat.Light
)。Base.ThemeOverlay.AppCompat.Light
。子供がいたThemeOverlay.AppCompat.Light
。ThemeOverlay.AppCompat.Light
と、Base.Theme.AppCompat.Light.DarkActionBar
テーマでの使用がactionBarPopupTheme
属性値として見つかりました。Theme.AppCompat.Light.DarkActionBar
は見つかったの子だったBase.Theme.AppCompat.Light.DarkActionBar
ので、styles.xmlでその属性を問題なく使用できました。ThemeOverlay.AppCompat.Light
、android:textColorSecondary
属性を変更しました。Sephyのソリューションは機能しません。上記の方法を使用してオプションメニュー項目のテキストの外観をオーバーライドできますが、項目またはメニューはオーバーライドできません。これを行うには、基本的に3つの方法があります。
その他の手がかりについては、課題4441:カスタムオプションメニューのテーマを参照してください。
このコードを試してください...
@Override
public boolean onCreateOptionsMenu(Menu menu) {
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.my_menu, menu);
getLayoutInflater().setFactory(new Factory() {
@Override
public View onCreateView(String name, Context context,
AttributeSet attrs) {
if (name.equalsIgnoreCase("com.android.internal.view.menu.IconMenuItemView")) {
try {
LayoutInflater f = getLayoutInflater();
final View view = f.createView(name, null, attrs);
new Handler().post(new Runnable() {
public void run() {
// set the background drawable
view.setBackgroundResource(R.drawable.my_ac_menu_background);
// set the text color
((TextView) view).setTextColor(Color.WHITE);
}
});
return view;
} catch (InflateException e) {
} catch (ClassNotFoundException e) {
}
}
return null;
}
});
return super.onCreateOptionsMenu(menu);
}
java.lang.IllegalStateException: A factory has already been set on this LayoutInflater
個々のメニュー項目に色を設定する場合、ツールバーのテーマをカスタマイズすることは適切な解決策ではありません。これを実現するには、android:actionLayoutとメニュー項目のアクションビューを利用できます。
まず、アクションビューのXMLレイアウトファイルを作成します。この例では、アクションビューとしてボタンを使用します。
menu_button.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/menuButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Done"
android:textColor="?android:attr/colorAccent"
style="?android:attr/buttonBarButtonStyle"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
上記のコードスニペットでは、android:textColor="?android:attr/colorAccent"
ボタンのテキストの色をカスタマイズするために使用しています。
次に、メニューのXMLレイアウトファイルに、次のapp:actionLayout="@layout/menu_button"
ように含めます。
main_menu.xml
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/menuItem"
android:title=""
app:actionLayout="@layout/menu_button"
app:showAsAction="always"/>
</menu>
最後onCreateOptionsMenu()
に、アクティビティのメソッドをオーバーライドします。
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.main_menu, menu);
MenuItem item = menu.findItem(R.id.menuItem);
Button saveButton = item.getActionView().findViewById(R.id.menuButton);
saveButton.setOnClickListener(view -> {
// Do something
});
return true;
}
...またはフラグメント:
@Override
public void onCreateOptionsMenu(@NonNull Menu menu, @NonNull MenuInflater inflater){
inflater.inflate(R.menu.main_menu, menu);
MenuItem item = menu.findItem(R.id.menuItem);
Button saveButton = item.getActionView().findViewById(R.id.menuButton);
button.setOnClickListener(view -> {
// Do something
});
}
アクションビューの詳細については、Androidデベロッパーガイドをご覧ください。
これは、特定のメニュー項目に色を付ける方法であり、すべてのAPIレベルで機能します。
public static void setToolbarMenuItemTextColor(final Toolbar toolbar,
final @ColorRes int color,
@IdRes final int resId) {
if (toolbar != null) {
for (int i = 0; i < toolbar.getChildCount(); i++) {
final View view = toolbar.getChildAt(i);
if (view instanceof ActionMenuView) {
final ActionMenuView actionMenuView = (ActionMenuView) view;
// view children are accessible only after layout-ing
actionMenuView.post(new Runnable() {
@Override
public void run() {
for (int j = 0; j < actionMenuView.getChildCount(); j++) {
final View innerView = actionMenuView.getChildAt(j);
if (innerView instanceof ActionMenuItemView) {
final ActionMenuItemView itemView = (ActionMenuItemView) innerView;
if (resId == itemView.getId()) {
itemView.setTextColor(ContextCompat.getColor(toolbar.getContext(), color));
}
}
}
}
});
}
}
}
}
そうすることで、背景セレクター効果が失われるので、メニューのすべての子にカスタム背景セレクターを適用するコードを次に示します。
public static void setToolbarMenuItemsBackgroundSelector(final Context context,
final Toolbar toolbar) {
if (toolbar != null) {
for (int i = 0; i < toolbar.getChildCount(); i++) {
final View view = toolbar.getChildAt(i);
if (view instanceof ImageButton) {
// left toolbar icon (navigation, hamburger, ...)
UiHelper.setViewBackgroundSelector(context, view);
} else if (view instanceof ActionMenuView) {
final ActionMenuView actionMenuView = (ActionMenuView) view;
// view children are accessible only after layout-ing
actionMenuView.post(new Runnable() {
@Override
public void run() {
for (int j = 0; j < actionMenuView.getChildCount(); j++) {
final View innerView = actionMenuView.getChildAt(j);
if (innerView instanceof ActionMenuItemView) {
// text item views
final ActionMenuItemView itemView = (ActionMenuItemView) innerView;
UiHelper.setViewBackgroundSelector(context, itemView);
// icon item views
for (int k = 0; k < itemView.getCompoundDrawables().length; k++) {
if (itemView.getCompoundDrawables()[k] != null) {
UiHelper.setViewBackgroundSelector(context, itemView);
}
}
}
}
}
});
}
}
}
}
ここにもヘルパー関数があります:
public static void setViewBackgroundSelector(@NonNull Context context, @NonNull View itemView) {
int[] attrs = new int[]{R.attr.selectableItemBackgroundBorderless};
TypedArray ta = context.obtainStyledAttributes(attrs);
Drawable drawable = ta.getDrawable(0);
ta.recycle();
ViewCompat.setBackground(itemView, drawable);
}
テキストの色を変更するには、MenuItemのカスタムビューを設定して、テキストの色を定義します。
サンプルコード:MenuItem.setActionView()