我想有一个可以在多个活动中使用的导航抽屉,因此我创建了一个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>

最佳答案

这不是Navigation Drawer模式的正确用法。看一下链接https://developer.android.com/training/implementing-navigation/nav-drawer.html

发生的情况是您的布局文件组成错误。对于子级,DrawerLayout期望将其作为滑动抽屉,而将其作为关闭抽屉时显示的主要内容。如果是布局代码,则您没有第二个孩子可以作为DrawerLayout内部的主要内容。相反,您已经创建了FrameLayout并将其作为同级添加到DrawerLayout中(不正确)。由于您已将DrawerLayout内的ListView分配为抽屉,即应用重力且没有主要内容,因此DrawerLayout在主要内容将要到达的位置不绘制任何内容,本质上留下了一个巨大的窗口,该窗口覆盖了DrawerLayout到达的整个宽度和高度。由于Android的视图系统是如何工作的,因此所有内容都是从下往上绘制的,因此以前的子视图是在Layout包含r中最顶部的视图之前绘制的(记住我说的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>

关于android - 扩展基本 Activity 会使我的其他 Activity 无法使用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48644027/

10-12 04:38