в menu.xml, у меня есть два пункта. В режиме LTR он отображается правильно. Но в RTL он отображается неправильно. Один элемент отсутствует. Я приложил скриншот и код. И мне нужно изменить цвет названия заголовка.
И я добавил supportRTL = "true" в файл манифеста
menu.xml
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
>
<item android:id="@+id/action_settings"
android:title="@string/action_settings"
app:showAsAction="never" />
<item
android:id="@+id/notification"
android:title="Notification"
app:actionLayout="@layout/badge_counter"
app:showAsAction="always"/>
</menu>
Код:
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu, menu);
// Create a condition (hide it if the count == 0)
if (mNotificationCounter > -1) {
BadgeCounter.update(this,
menu.findItem(R.id.notification),
R.drawable.noti,
BadgeCounter.BadgeColor.BLUE,
mNotificationCounter);
} else {
BadgeCounter.hide(menu.findItem(R.id.notification));
}
this.menu = menu;
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
this.menuItem = item;
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
} else if (id == R.id.notification) {
// If you want to update
// mNotificationCounter--;
}
return super.onOptionsItemSelected(item);
}
Обратите внимание, что отсутствует только значок уведомления.