如何在导航栏中的同一行添加三个项目?

时间:2017-11-30 06:52:03

标签: android android-navigation-drawer

我有导航抽屉。其中我有一个标题,其他是项目列表。 现在问题是如何在同一行中添加三个项目。喜欢

 Header xyz

    --------------------------
        Image   Text     Text    -----> row one
   ----------------------------- 
        iamge   text     text    ------> row two
    ----------------------------
        image   text     text    ------> row three
    ---------------------------
----- ....... so on

当用户点击列表中该项应显示在标题上的任何项目时。请指导我。

1 个答案:

答案 0 :(得分:0)

1.使用NavigationView

2.将布局添加到NavigationView

3.add RecyclerView布局(并设置GridLayoutManager

重要的是在代码中使用 inflateHeaderView 方法。

<?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"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/white"
    android:fitsSystemWindows="true">

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

</FrameLayout>

<android.support.design.widget.NavigationView
    android:id="@+id/navigation_view"
    android:layout_width="@dimen/dp_200"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    android:background="@color/white"
    android:paddingTop="@dimen/dp_25"/>
</android.support.v4.widget.DrawerLayout>

<强> header_layout

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
          android:layout_width="match_parent"
          android:layout_height="match_parent"
          android:fitsSystemWindows="true"
          android:orientation="vertical">

<TextView
    android:id="@+id/tv_header"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"/>

<android.support.v7.widget.RecyclerView
    android:id="@+id/recycler_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
</android.support.v7.widget.RecyclerView>

</LinearLayout>

活性

View headview = mNavigationView.inflateHeaderView(R.layout.header_layout);
TextView tvHeader = (TextView) headview.findViewById(R.id.tv_header);
RecyclerView recyclerView = (RecyclerView) headview.findViewById(R.id.recycler_view);
recyclerView.setLayoutManager(new GridLayoutManager(this,3));
recyclerView.setAdapter(mAdapter);