簡體   English   中英

如何在同一活動中為底部導航和導航抽屜創建偵聽器?

[英]How to create a listener for bottom navigation and navigation drawer in the same activity?

//這是我的java代碼

public class HomeActivity extends AppCompatActivity implements NavigationView.OnNavigationItemSelectedListener {

    BottomNavigationView bottomNavigationView;
    NavigationView navigationView;

    private BottomNavigationView.OnNavigationItemSelectedListener mOnNavigationItemSelectedListener = new BottomNavigationView.OnNavigationItemSelectedListener() {
        @Override
        public boolean onNavigationItemSelected(@NonNull final MenuItem item) {
            switch (item.getItemId()) {
                case R.id.home:
                    HomeFragment homeFragment=new HomeFragment();
                    android.support.v4.app.FragmentTransaction fragmentTransaction=getSupportFragmentManager().beginTransaction();
                    fragmentTransaction.replace(R.id.frameLayout,homeFragment).commit();
                    return true;

                case R.id.navigation_stylist:
                    StylistFragment stylistsFragment=new StylistFragment();
                    android.support.v4.app.FragmentTransaction fragmentTransaction1=getSupportFragmentManager().beginTransaction();
                    fragmentTransaction1.replace(R.id.frameLayout,stylistsFragment).commit();
                    return true;

                case R.id.navigation_apps:
                    MyapptsFragment myaaptsFragment=new MyapptsFragment();
                    android.support.v4.app.FragmentTransaction fragmentTransaction2=getSupportFragmentManager().beginTransaction();
                    fragmentTransaction2.replace(R.id.frameLayout,myaaptsFragment).commit();
                    return true;

                case R.id.navigation_tips:
                    HairtipsFragment hairtipsFragment=new HairtipsFragment();
                    android.support.v4.app.FragmentTransaction fragmentTransaction3=getSupportFragmentManager().beginTransaction();
                    fragmentTransaction3.replace(R.id.frameLayout,hairtipsFragment).commit();
                    return true;

                case R.id.navigation_account:
                    AccountFragment accountFragment=new AccountFragment();
                    android.support.v4.app.FragmentTransaction fragmentTransaction4=getSupportFragmentManager().beginTransaction();
                    fragmentTransaction4.replace(R.id.frameLayout,accountFragment).commit();

                    return true;
            }
            return false;
        }
    };


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        //start onboarding when app is opening first time
        isUserFirstTime = Boolean.valueOf(Utils.readSharedSetting(HomeActivity.this, PREF_USER_FIRST_TIME, "true"));
        Intent introIntent = new Intent(HomeActivity.this, OnboardingActivity.class);
        introIntent.putExtra(PREF_USER_FIRST_TIME, isUserFirstTime);

        if (isUserFirstTime)
            startActivity(introIntent);

        setContentView(R.layout.activity_home);

        bottomNavigationView = findViewById(R.id.bottom_navigation);
        navigationView=findViewById(R.id.nav_drawer);


        //bottom navigationview listener
        bottomNavigationView.setOnNavigationItemSelectedListener(mOnNavigationItemSelectedListener);
        BottomNavigationViewHelper.disableShiftMode(bottomNavigationView);

        //navigation drawer listener
        navigationView.setNavigationItemSelectedListener(this);


        //open home fragment on first launch
        HomeFragment homeFragment=new HomeFragment();
        android.support.v4.app.FragmentTransaction fragmentTransaction=getSupportFragmentManager().beginTransaction();
        fragmentTransaction.replace(R.id.frameLayout,homeFragment).commit();

    }


    @Override
    public boolean onNavigationItemSelected(@NonNull MenuItem item) {
        switch (item.getItemId()) {
            case R.id.nav_home:
                HomeFragment homeFragment=new HomeFragment();
                android.support.v4.app.FragmentTransaction fragmentTransaction=getSupportFragmentManager().beginTransaction();
                fragmentTransaction.replace(R.id.frameLayout,homeFragment).commit();
                return true;

            case R.id.nav_products:
                StylistFragment stylistsFragment=new StylistFragment();
                android.support.v4.app.FragmentTransaction fragmentTransaction1=getSupportFragmentManager().beginTransaction();
                fragmentTransaction1.replace(R.id.frameLayout,stylistsFragment).commit();
                return true;

            case R.id.nav_promotions:
                MyapptsFragment myaaptsFragment=new MyapptsFragment();
                android.support.v4.app.FragmentTransaction fragmentTransaction2=getSupportFragmentManager().beginTransaction();
                fragmentTransaction2.replace(R.id.frameLayout,myaaptsFragment).commit();
                return true;

            case R.id.nav_purchases:
                HairtipsFragment hairtipsFragment=new HairtipsFragment();
                android.support.v4.app.FragmentTransaction fragmentTransaction3=getSupportFragmentManager().beginTransaction();
                fragmentTransaction3.replace(R.id.frameLayout,hairtipsFragment).commit();
                return true;

            case R.id.nav_settings:
                AccountFragment accountFragment=new AccountFragment();
                android.support.v4.app.FragmentTransaction fragmentTransaction4=getSupportFragmentManager().beginTransaction();
                fragmentTransaction4.replace(R.id.frameLayout,accountFragment).commit();
                return true;
        }
        return false;
    }
}

// 這是我的 xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    tools:openDrawer="start">

    <android.support.design.widget.NavigationView
        android:id="@+id/nav_drawer"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:fitsSystemWindows="true"
        app:theme="@style/menu_text_style"
        app:menu="@menu/navigation_drawer" />

    <!--app:headerLayout="@layout/nav_header_main"-->

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <FrameLayout
            android:id="@+id/frameLayout"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_above="@+id/shadow"
            android:animateLayoutChanges="true">

        </FrameLayout>

        <View
            android:id="@+id/shadow"
            android:layout_width="match_parent"
            android:layout_height="@dimen/_1sdp"
            android:layout_above="@id/bottom_navigation"
            android:background="@color/shadow"/>


        <android.support.design.widget.BottomNavigationView
            android:id="@+id/bottom_navigation"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            app:itemIconTint="@color/navigationitem"
            app:itemTextColor="@color/navigationitem"
            app:menu="@menu/navigation_item"/>
    </RelativeLayout>

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

我想在同一個活動中創建導航抽屜和底部導航。 我創建了XML設計,現在我必須為兩者編寫 Java 代碼。 底部導航工作正常,但導航項clicklistener器不起作用。 我為導航抽屜和底部導航創建了片段。 當我單擊導航抽屜中的項目時,它不會重定向到相應的片段。 導航抽屜的給定clicklistener器根本不起作用。

解決方案:

嘗試以下步驟以使其正常工作:

Step1:實現onNavigationItemSelected如下圖:

.... extends AppCompatActivity implements NavigationView.OnNavigationItemSelectedListener { 

Step2:使用接口生成的方法為:

@Override
public boolean onNavigationItemSelected(@NonNull MenuItem item) {
    switch (item.getItemId()) {
        case R.id.your_drawer_item_id:
            ....
            ....
        case R.id.your_drawer_item_id:
            ....
            ....
    }
}

Step3:在你的類中聲明一個全局變量:

public NavigationView navigationView;

步驟 4:在您的onCreate()中將變量初始化為:

navigationView = (NavigationView) findViewById(R.id.your_nav_view);

最后:設置導航視圖:

navigationView.setNavigationItemSelectedListener(this);

就是這樣。

希望它有效。

抽屜布局xml:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    tools:openDrawer="start">

    <include
        layout="@layout/app_bar_vendor_drawer_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <android.support.design.widget.NavigationView
        android:id="@+id/nav_drawer_view"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:background="@color/White"
        android:fitsSystemWindows="true"
        app:itemBackground="@android:color/white"
        app:itemIconTint="@color/bottom_color"
        app:itemTextColor="@color/bottom_color"
        app:headerLayout="@layout/nav_header_vendor_drawer_layout"
        app:menu="@menu/vendor_drawer_menu" >

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

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

app_bar_vendor_drawer_layout xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="logixtic.android.web.vd.driver.activities.DriverDrawerActivity">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/MyMaterialTheme.AppBarOverlay">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="@color/Project_Standard"
            app:popupTheme="@style/MyMaterialTheme.PopupOverlay" />

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

    <FrameLayout
        android:id="@+id/content_frame"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginTop="?attr/actionBarSize"
        android:layout_above="@+id/bottom_navigation">

    </FrameLayout>

    <View
        android:layout_width="match_parent"
        android:layout_height="3dp"
        android:background="@drawable/toolbar_dropshadow_above"
        android:layout_above="@id/bottom_navigation"/>

    <android.support.design.widget.BottomNavigationView
        android:id="@+id/bottom_navigation"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        app:itemBackground="@color/White"
        app:itemIconTint="@color/bottom_color"
        app:itemTextColor="@color/bottom_color"
        app:menu="@menu/vendor_bottom_navigation"/>

</RelativeLayout>

嘗試一下。

您可以使用接收 MenuItem 參數的方法在同一活動上使用,如下所示:

private void myClickItem(MenuItem item){
    switch (item.getItemId()) {
        case R.id.bottom_home:
            // DO SOMETHING
            break;

        case R.id.drawer_main:
            // DO SOMETHING
            break;
      }
}

然后,像這樣調用:

BottomNavigationView bottomNavigationView =  findViewById(R.id.bottom_navigation);
bottomNavigationView.setOnNavigationItemSelectedListener(item -> { // using lamda
     myClickItem(item); //call here
     return true;
});

NavigationView navigationView = findViewById(R.id.nv);
navigationView.setNavigationItemSelectedListener(item -> {
    myClickItem(item); // call the same method here

    drawerLayout.closeDrawers(); // bonus: hide navigation after click
    return false;
});

您不需要修改您的 xml res,它會正常工作。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM