10

我正在向我正在开发的这个应用程序添加一个导航抽屉,并且我已经搜索了互联网;论坛、stackoverflow、android 开发人员文档,但仍然没有找到一个很好的答案。

我知道不使用这些东西中的任何一个都可以做到这一点。我想知道的是如何。NsMenuAdapter模型用了一个title,然后还有这些函数

getActionBar().setDisplayHomeAsUpEnabled(true);
getActionBar().setHomeButtonEnabled(true);

这显然是在寻找一个动作栏。我尝试了几个不起作用的模型,我刚刚尝试完成的大模型位于此处如何添加与 Android Navigation Drawer 的标题相邻的图标(这与我在下面的链接有关,该项目来自 gitHub这里https://github.com/gabrielemariotti/androiddev/tree/master/NavigationDrawer)。现在关键是,我正在使用自定义布局(即相对布局与线性布局混合),我真的不知道下一步应该做什么才能让它工作。

旁注:当我的 main_activity.xml (导航抽屉的实现)中只有 ListView 时,它确实像预期的那样正确滑出。但我终其一生都无法弄清楚如何用数据填充它。我基本上需要 3 个标题,其中包含可点击的导航元素,元素旁边有图标。

我转向这个模型,以了解如何通过相对布局来做到这一点http://gmariotti.blogspot.com/2013/05/creating-navigation-drawer.html但他们使用动作/标题栏,这就是真的让我陷入困境。

4

3 回答 3

14

其实很简单。比使用 ActionBar 更容易。我正在用几乎最简单的布局写答案

使您的 xml 如下所示:

<android.support.v4.widget.DrawerLayout     
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<!-- This is how your main page will look, just 2 buttons -->

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

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:onClick="onLeft"
            android:text="left" />

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:onClick="onRight"
            android:text="right" />
    </RelativeLayout>

<!-- Left Drawer -->
    <RelativeLayout
    android:id="@+id/whatYouWantInLeftDrawer"
    android:layout_width="240dp"
    android:layout_height="match_parent"
    android:layout_gravity="start" >

        <ListView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@android:color/background_dark" />
    <!-- you can have many more widgets here like buttons or labels -->
    </RelativeLayout>


<!-- Right Drawer -->
    <RelativeLayout
    android:id="@+id/whatYouWantInRightDrawer"
    android:layout_width="200dp"
    android:layout_height="wrap_content"
    android:layout_gravity="right" >

        <ListView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@android:color/holo_green_light" />
    <!-- you can have many more widgets here like buttons or labels -->
    </RelativeLayout>

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

然后让你的活动像这样:

public class MainActivity extends Activity {

RelativeLayout leftRL;
RelativeLayout rightRL;
DrawerLayout drawerLayout;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
//      I'm removing the ActionBar.
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        setContentView(R.layout.activity_main);

        leftRL = (RelativeLayout)findViewById(R.id.whatYouWantInLeftDrawer);
        rightRL = (RelativeLayout)findViewById(R.id.whatYouWantInRightDrawer);
        drawerLayout = (DrawerLayout)findViewById(R.id.drawer_layout);
    }

    public  void onLeft(View view) {
         drawerLayout.openDrawer(leftRL);
    }

    public  void onRight(View view) {
         drawerLayout.openDrawer(rightRL);
    }
}

而已。希望能帮助到你。

于 2014-01-16T07:37:40.090 回答
5

我知道不使用这些东西中的任何一个都可以做到这一点。我想知道的是如何。

步骤#1:按照使用说明进行操作DrawerLayout,例如本培训指南中的步骤,跳过与操作栏相关的任何内容。

步骤#2:没有步骤#2。

虽然DrawerLayout 可以使用操作栏,但它不是必需的,实际上需要额外的设置。

于 2013-07-18T23:25:40.787 回答
0

我试图将导航抽屉添加到已经存在的活动(没有操作栏)中,我的解决方案是删除该行

android:fitsSystemWindows="true" 

<android.support.v4.widget.DrawerLayout我的活动的 xml 文件中。

于 2018-10-28T12:16:23.207 回答