遇到这样的问题。 SlidingMenu使用,当我提出时,此菜单中的所有内容都不是活动的,不可点击。有一个简单的测试按钮,但是当你推动时它绝对没有发生。
SlidingMenu
menu = new SlidingMenu(this); // экземпляр класса
menu.setMode(SlidingMenu.LEFT);
menu.setTouchModeBehind(SlidingMenu.TOUCHMODE_FULLSCREEN);
menu.setShadowDrawable(R.drawable.shadows_menu_swype1);
menu.setShadowWidth(15);
menu.setFadeDegree(0.50f);
menu.attachToActivity(this, SlidingMenu.SLIDING_WINDOW);
menu.setBehindWidth(300);
menu.setMenu(R.layout.menu_swype);
XML
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/shadows_menu_swype2"
android:orientation="vertical" >
<Button
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="asdasd"/>
<ListView
android:id="@+id/menu_swypeID"
android:layout_marginLeft="7dp"
android:layout_marginRight="7dp"
android:layout_height="match_parent"
android:layout_width="wrap_content"
android:divider="@drawable/boder_menu_swype"
android:dividerHeight="2dp">
</ListView>
感谢任何帮助!!!!