Próbuję dodać motyw nocny do mojej aplikacji i zmarnowałem prawie trzy godziny, próbując zmienić kolor tekstu i ikon w szufladzie nawigacji na biały wraz z ciemnym tłem. Oto sposób, w jaki próbuję to zrobić onCreate()
w MainActivity.java
:
navigationView = (NavigationView) findViewById(R.id.navigation_view);
navigationView.setNavigationItemSelectedListener(new NavigationView.OnNavigationItemSelectedListener() {
// This method will trigger onItemClick of navigation menu
@Override
public boolean onNavigationItemSelected(MenuItem menuItem) {
// Checking if the item is in checked state or not, if not make it in checked state
if (menuItem.isChecked())
menuItem.setChecked(false);
else menuItem.setChecked(true);
if (nightMode == 0) {
SpannableString spanString = new SpannableString(menuItem.getTitle().toString());
spanString.setSpan(new ForegroundColorSpan(Color.WHITE), 0, spanString.length(), 0); // fix the color to white
menuItem.setTitle(spanString);
}
Wartość nightMode
logiczna nie ma znaczenia, ponieważ działa. Gdy tryb nocny jest włączony (0), dowolna pozycja menu wybrana w szufladzie nawigacji zmienia kolor na biały. Jednak dzieje się tak tylko wtedy, gdy wybrany jest każdy element, co jest oczywiście niewygodne. Oto mój drawer_dark.xml:
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<group
android:checkableBehavior="single">
<item
android:id="@+id/unitone"
android:checked="true"
android:icon="@drawable/one_white"
android:title="Classical Period" />
<item
android:id="@+id/unittwo"
android:checked="false"
android:icon="@drawable/two_white"
android:title="Postclassical Period" />
<item
android:id="@+id/unitthree"
android:checked="false"
android:icon="@drawable/three_white"
android:title="Early Modern Era" />
<item
android:id="@+id/unitfour"
android:checked="false"
android:icon="@drawable/four_white"
android:title="Dawn of Industrial Age" />
<item
android:id="@+id/unitfive"
android:checked="false"
android:icon="@drawable/five_white"
android:title="Modern Era" />
</group>
</menu>
Używam białych ikon na przezroczystym tle dla każdego elementu, ale są one wyświetlane jako czarne na czarnym tle szuflady nawigacji. Próbowałem znaleźć rozwiązanie XML do zmiany koloru tekstu i drapię się po głowie, ponieważ nie wiem, dlaczego zostało to przeoczone.
Czy ktoś może zaoferować mi dynamiczne rozwiązanie w uzyskaniu tego, co próbuję osiągnąć? Każda pomoc jest mile widziana, dziękuję!
EDYCJA: Nie używam biblioteki innej firmy, jest to NavigationView udostępniona w bibliotece pomocy technicznej. Oto układ XML:
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:elevation="7dp"
tools:context=".MainActivity"
android:fitsSystemWindows="true" >
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<FrameLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/ColorDark" />
<include layout="@layout/toolbar" />
</FrameLayout>
<android.support.design.widget.NavigationView
android:id="@+id/navigation_view"
android:background="#000"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:layout_gravity="start"
app:headerLayout="@layout/header"
app:menu="@menu/drawer" />
</android.support.v4.widget.DrawerLayout>
Light
naDark
i odwrotnie ...