导航抽屉问题

时间:2014-03-13 11:17:34

标签: android xml android-layout user-interface navigation-drawer

我一直在关注谷歌的官方指南来创建一个简单的导航抽屉。到目前为止,我已将Main_Activity.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">
    <!-- The main content view -->
    <FrameLayout
        android:id="@+id/content_frame"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
    <!-- The navigation drawer -->
    <ListView android:id="@+id/drawer_list"
        android:layout_width="240dp"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:choiceMode="singleChoice"
        android:divider="@android:color/transparent"
        android:dividerHeight="0dp"
        android:background="#111"/> 
</android.support.v4.widget.DrawerLayout>

然后在我的MainActivity.java上添加了以下内容:

    mDrawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout);
    mDrawerList = (ListView) findViewById(R.id.drawer_list);

    // Creating an ArrayAdapter to add items to the listview mDrawerList
    ArrayAdapter<String> adapter = new ArrayAdapter<String>(getBaseContext(), 
            R.layout.drawer_list_item, mOptions);

    // Setting the adapter on mDrawerList
    mDrawerList.setAdapter(adapter);

我还使用以下

创建了XML drawer_list_item
 <TextView xmlns:android="http://schemas.android.com/apk/res/android"
     android:id="@android:id/text1"
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
     android:textAppearance="?android:attr/textAppearanceListItemSmall"
     android:gravity="center_vertical"
     android:paddingLeft="16dp"
     android:paddingRight="16dp"
     android:textColor="#fff"
     android:background="?android:attr/activatedBackgroundIndicator"
     android:minHeight="?android:attr/listPreferredItemHeightSmall"/>

但我仍然没有任何东西,甚至没有错误。它只是不起作用,我想我错过了一些简单的,谢谢!

1 个答案:

答案 0 :(得分:1)

关注this link,希望它会对你有所帮助。

如果你卡在任何地方可以自由地问我......