Android DrawerLayout没有响应按钮点击事件

时间:2015-01-29 11:01:03

标签: android button navigation-drawer

我的活动中有DrawerLayout个组件,但我没有使用ActionBar

这是我的main_activity.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
tools:context=".MainActivity"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white">


<android.support.v4.widget.DrawerLayout
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

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

    </FrameLayout>


    <ListView
        android:id="@+id/drawer"
        android:layout_width="650dp"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:background="@android:color/white"
        android:divider="@null"
        android:choiceMode="singleChoice"
        android:visibility="gone"/>

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


<ImageButton
    android:id="@+id/categories_button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_margin="20dp"
    android:adjustViewBounds="true"
    android:scaleType="centerCrop"
    android:background="@drawable/button_category"/>

在我的MainActivity中,我尝试通过点击DrawerLayout来打开/关闭Button

这是我的Activity

public class MainActivity extends Activity {

     private ImageButton categoriesButton;
     private DrawerLayout drawerLayout;
     private ListView drawerMenu;

     @Override
     protected void onCreate(Bundle savedInstanceState) {
     super.onCreate(savedInstanceState);
     setContentView(R.layout.activity_main);

     categoriesButton = (ImageButton)findViewById(R.id.categories_button);
     categoriesButton.setOnClickListener(new View.OnClickListener() {
     @Override
     public void onClick(View v) {

          if(drawerLayout.isDrawerOpen(drawerMenu)) {
               drawerLayout.closeDrawer(drawerMenu);
          }else {
               drawerLayout.openDrawer(drawerMenu);
          }

       }
     });

     drawerLayout = (DrawerLayout)findViewById(R.id.drawer_layout);
     drawerMenu = (ListView) findViewById(R.id.drawer);
     MyAdapter myAdapter = new MyAdapter(context, getCategories());
     drawerMenu.setAdapter(myAdapter);

     }    
}

当我第一次点击Button时没有响应,但是在我手动打开DrawerLayout后,它会完美无缺。

有人知道这里有什么问题吗? 谢谢!

1 个答案:

答案 0 :(得分:1)

我找到了解决方案!在xml中,Listview可见性需要设置为visible。它设置为gone(我从官方文档中获取了此代码)。

<ListView
    android:id="@+id/drawer"
    android:layout_width="650dp"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    android:background="@android:color/white"
    android:divider="@null"
    android:choiceMode="singleChoice"
    android:visibility="visible"/>

无论如何它现在有效。谢谢你的帮助!