我希望有一个导航抽屉可以出现在多个活动中,因此我创建了一个类似于此的BaseDrawerActivity
类
public class BaseDrawerActivity extends AppCompatActivity {
protected RelativeLayout fullLayout;
protected FrameLayout frameLayout;
@Override
public void setContentView(int layoutResID) {
fullLayout = (RelativeLayout) getLayoutInflater().inflate(R.layout.drawer_n_activity, null);
frameLayout = fullLayout.findViewById(R.id.drawer_frame);
getLayoutInflater().inflate(layoutResID, frameLayout, true);
super.setContentView(fullLayout);
//...
}
//...
//(other navigation drawer stuff)
//...
我想要包含导航抽屉的活动之一看起来像
public class ExerciseActivity extends BaseDrawerActivity {
//...
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_exercise);
//...
}
//...
我的导航器抽屉出现在上述活动中,但其内容无法点击/无法使用。它就像来自BaseDrawerActivity
的东西一样。
我缺少什么
我知道这也可以用片段来完成,但我对此并不感兴趣。
编辑:我被问到.xml
个文件。
activity_exercise.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:layout_editor_absoluteY="81dp">
<ListView
android:id="@+id/lvItems"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginBottom="8dp"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>
这是BaseDrawerActivity
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout
android:id="@+id/drawer_frame"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<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">
<ListView
android:id="@+id/navList"
android:layout_width="200dp"
android:layout_height="match_parent"
android:layout_gravity="left|start"
android:background="#ffeeeeee" />
</android.support.v4.widget.DrawerLayout>
</RelativeLayout>
答案 0 :(得分:1)
这不是导航抽屉模式的正确用法。请查看链接https://developer.android.com/training/implementing-navigation/nav-drawer.html。
发生了什么,是你的布局文件编写错了。 DrawerLayout期望,对于儿童一,将表现为滑动抽屉,并且将作为抽屉关闭时显示的主要内容。如果你的布局代码,你没有第二个孩子作为DrawerLayout内的主要内容。相反,您已经创建了一个FrameLayout并将其作为兄弟添加到DrawerLayout(不正确)。由于您将DrawerLayout内的ListView指定为抽屉,即应用重力,而不是主要内容,因此DrawerLayout不会为主内容的位置绘制任何内容,实际上会留下一个巨大的窗口,覆盖DrawerLayout到达的整个宽度和高度。由于Android的视图系统如何工作,所有内容都是自下而上的,因此以前的子视图是在Layout容器中的最顶层视图之前绘制的(记住我是如何说FrameLayout是DrawerLayout的兄弟)。因此,这意味着您的FrameLayout内容正在DrawerLayout后面绘制,但由于DrawerLayout没有绘制主要内容,您可以看到它下面绘制的内容,因此您可以从文件'activity_exercise.xml'中看到UI。请注意,即使DrawerLayout没有绘制任何内容,它仍然会拦截点击事件,以获取其内容的绘制位置。
这更像是你想要的:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<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">
<FrameLayout
android:id="@+id/drawer_frame"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<ListView
android:id="@+id/navList"
android:layout_width="200dp"
android:layout_height="match_parent"
android:layout_gravity="left|start"
android:background="#ffeeeeee" />
</android.support.v4.widget.DrawerLayout>
</RelativeLayout>