1

環境

drawer navigationAndroidスタジオの例からのを含むベースアクティビティがあります。透明にしたstatusbarので、メニューをその下にスライドさせて、次のように色が透明にオーバーフローできるようにします。

(右側の青に注目)

ここに画像の説明を入力

ただし、デフォルトでは次のようになります。

Android ナビゲーション ドロワー

質問

青色はテーマ colorPrimaryDark によるものですが、この色を動的に変更したいので、テーマに頼ることはできません。色を動的/プログラムで設定する方法はありますか?

私が試したこと

  • 装飾ビューの色を調整します。getWindow().getDecorView().setBackgroundColor(Color.White)
  • ステータスバーの色を設定し、フラグを使用します DRAWS_SYSTEM_BAR_BACKGROUNDS:

    if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS); window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS); window.setStatusBarColor(Color.BLUE); }

(コーディングブロックが貧弱で申し訳ありません。リッスンしたくありません)

これにより、最初の画像のように透明になるのではなく、単色になります。

  • rootView の色の変更anyView.getRootView().setBackgroundColor()

XML ファイル: root_controller.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.v4.widget.DrawerLayout
        android:id="@+id/drawer_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fitsSystemWindows="true"
        android:clipToPadding="false"
        tools:openDrawer="end">


        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">

            <!-- toolbar -->
            <include android:id="@+id/toolbar_group"
                layout="@layout/toolbar"/>

            <FrameLayout
                android:id="@+id/main_content"
                android:layout_width="match_parent"
                android:layout_height="match_parent"/>

        </LinearLayout>

        <android.support.design.widget.NavigationView
            android:id="@+id/nav_view"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_gravity="start"/>

    </android.support.v4.widget.DrawerLayout>


</RelativeLayout>

XML ファイルのツールバー:

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.AppBarLayout
    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="52dp">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="52dp"
        app:layout_scrollFlags="scroll|enterAlways" />

</android.support.design.widget.AppBarLayout>

RootController アクティビティ

public class RootController extends AppCompatActivity implements
        NavigationView.OnNavigationItemSelectedListener {

    @Override
    public void setContentView(int layoutResID) {
        rootView = getLayoutInflater().inflate(R.layout.root_controller, null);
        drawer = (DrawerLayout)rootView.findViewById(R.id.drawer_layout);
        FrameLayout frameLayout = (FrameLayout) drawer.findViewById(R.id.main_content);

        targetView = getLayoutInflater().inflate(layoutResID, frameLayout, true);

        initMenu(drawer);
        super.setContentView(rootView);
    }

private void initMenu(DrawerLayout drawer){

        // get toolbar
        toolbarGroup = rootView.findViewById(R.id.toolbar_group);
        initToolbarGroup(toolbarGroup, "test");



        // get the navigation view
        nav = (NavigationView) drawer.findViewById(R.id.nav_view);
        nav.setBackgroundColor(ColorDelegate.getNavColor());
        Menu menu = nav.getMenu();

        // set navigation listener
        nav.setNavigationItemSelectedListener(this);

        // ... fill menu
    }
4

1 に答える 1

0

あなたのでこれを試してくださいActivity

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
    Window window = getWindow();
    String dynamicColor = "#99000000";
    window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
    window.addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN); /*You were missing this*/
    window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
    window.setStatusBarColor(Color.parseColor(dynamicColor));
}
于 2017-01-05T07:04:18.510 に答える