android如何将android导航项目传递给片段(就像菜单一样)

时间:2017-01-11 10:06:14

标签: android fragment

大家好,我只是有一个简单的问题,但我找不到合适的解决方案。 当我在android中创建导航抽屉活动时,它包含抽屉内的菜单项。现在我只删除了所有菜单项并用以下代码替换了我的主布局文件:

<?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">
    <ReletiveLayout    
          android:layout_width="match_parent"
        android:layout_height="match_parent">
    <include
    android:id="@+id/appBar"
            layout="@layout/app_bar_dashboard"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />
            <FrameLayout  
            android:id="@+id/contentFrame"
            android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="@+id/appBar"> 
            </FrameLayout>
    </RelativeLayout>


        <android.support.design.widget.NavigationView
            android:id="@+id/nav_view"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:background="#23282e"
            android:layout_gravity="start"
            android:fitsSystemWindows="true">

     <LinearLayout
                        android:id="@+id/dashboard_layout"
                        android:layout_width="match_parent"
                        android:orientation="horizontal"
                        android:background="#2e353d"
                        android:layout_height="35dp">

                        <ImageView
                            android:layout_width="30dp"
                            android:layout_marginLeft="30dp"
                            android:src="@mipmap/dashboard"
                            android:padding="3dp"
                            android:layout_height="match_parent" />

                        <TextView
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_gravity="center_vertical"
                            android:layout_marginLeft="8dp"
                            android:textColor="#fff"
                            android:text="Dashboard"/>

                    </LinearLayout>
     </android.support.design.widget.NavigationView>
</android.support.v4.widget.DrawerLayout>

现在我想点击片段点击Linearlayout(仪表板)。使用菜单通常在onNavigationItemSelected(MenuItem项目)内完成。如何在不使用menuitem的情况下完成此操作。

1 个答案:

答案 0 :(得分:0)

OnclickListner设置为LinearLayout,并在其OnClick方法中更改片段..