我在我的主要活动(扩展AppCompatActivity)中使用android.support.v4.widget.DrawerLayout和com.android.support:appcompat-v7来提供导航抽屉,并在抽屉中使用ListView提供用户可点击的项目。
除了运行 Android 5.0.2 的 Samsung Tab 设备外,这一切都运行良好。
代码已经过测试,可以在4.2.1到6.0.1的各种Android版本上按预期工作,并且可以在运行5.0.2的模拟器上正常运行。
在三星设备上,导航抽屉在点击时被解除,但新活动(例如,下面的代码中的MyPreferenceActivity或HelpPageActivity)从未显示。
我的问题:是否有任何不正确的代码或布局可能导致无法在Samsung Tab / 5.0.2设备上运行?
主要活动如下:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent" android:gravity="fill"
android:background="@color/standard_bkgnd">
<include
android:id="@+id/toolbar_actionbar"
layout="@layout/toolbar_actionbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<android.support.v4.widget.DrawerLayout
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/toolbar_actionbar"
>
<!-- normal content view -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
...main UI stuff...
</LinearLayout>
<!-- drawer view -->
<include layout="@layout/nav_drawer" />
</android.support.v4.widget.DrawerLayout>
</LinearLayout>
nav_drawer布局如下:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="280dp"
android:layout_height="match_parent"
android:background="@color/button_material_dark"
android:orientation="vertical"
android:layout_gravity="start">
<RelativeLayout
android:id="@+id/drawer_header"
android:layout_width="match_parent"
android:layout_height="100dp"
android:background="@color/material_blue_grey_800"
android:padding="8dp" >
<ImageView
android:id="@+id/app_icon"
android:layout_width="50dp"
android:layout_height="50dp"
android:src="@drawable/ic_launcher_08"
android:layout_marginTop="15dp"
android:contentDescription="@string/app_icon"/>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="42dp"
android:layout_centerVertical="true"
android:layout_marginLeft="15dp"
android:layout_toRightOf="@+id/app_icon"
android:orientation="vertical" >
<TextView
android:id="@+id/app_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/app_name"
android:textColor="#fff"
android:textSize="16sp"
android:textStyle="bold" />
<TextView
android:id="@+id/desc"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:layout_marginTop="4dp"
android:text="@string/app_long_name"
android:textColor="#fff"
android:textSize="12sp" />
</LinearLayout>
</RelativeLayout>
<ListView
android:id="@+id/nav_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/drawer_header"
android:choiceMode="singleChoice"/>
</RelativeLayout>
ListView配置为显示许多项目,用户可以单击这些项目以查看应用程序中的其他内容,或执行其他活动:
// Drawer Item click listeners
drawerList.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
switch (position) {
case 0: // preferences
startActivity(new Intent(that, MyPreferenceActivity.class));
break;
case 1: // help
startActivity(new Intent(that, HelpPageActivity.class));
break;
case 2: // send feedback
composeEmail();
break;
default:
break;
}
_drawerLayout.postDelayed(new Runnable() {
@Override
public void run() {
_drawerLayout.closeDrawers();
}
}, 500);
drawerList.clearChoices();
}
});
任何建议都非常感谢!
答案 0 :(得分:0)
所以,事实证明与三星Tab / 5.0.2完全没有任何关系 - 巧合的是我唯一的问题来自这些设备。
问题是我的主要活动的横向布局具有正常内容视图和抽屉视图颠倒的顺序,这阻止了ListItems接收到click事件:
<android.support.v4.widget.DrawerLayout
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/toolbar_actionbar"
>
<!-- normal content view -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
...main UI stuff...
</LinearLayout>
<!-- drawer view *** this must come after the normal content view *** -->
<include layout="@layout/nav_drawer" />
</android.support.v4.widget.DrawerLayout>
一旦我转换它们,事情就像预期的那样奏效。卫生署。