내 앱에 야간 테마를 추가하려고하는데 내비게이션 서랍의 텍스트와 아이콘을 어두운 배경과 함께 흰색으로 바꾸는 데 거의 3 시간을 낭비했습니다. 여기에 내가이 일을 가야하기 위해 노력하고있어 방법이다 onCreate()
인은 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);
}
nightMode
작동하기 때문에 부울는 무관하다. 야간 모드가 켜짐 (0)으로 설정되면 탐색 창에서 선택한 메뉴 항목이 흰색으로 바뀝니다. 그러나 그것은 분명히 불편한 각 항목을 선택할 때만 발생합니다. 다음은 내 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>
각 항목에 대해 투명한 배경에 흰색 아이콘을 사용하고 있지만 탐색 서랍의 검은 색 배경에 검은 색으로 표시됩니다. 나는 텍스트의 색상을 변경하는 xml 솔루션을 찾으려고 시도했지만 이것이 왜 간과되었는지 모르겠 기 때문에 머리를 긁적입니다.
누군가 내가 달성하려는 것을 얻기 위해 동적 솔루션을 제공 할 수 있습니까? 모든 도움에 감사드립니다. 감사합니다!
편집 : 타사 라이브러리를 사용하지 않고 지원 라이브러리에서 제공되는 NavigationView입니다. 다음은 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
에Dark
.. 반대 및 부사장