gpt4 book ai didi

android - 扩展基本 Activity 会使我的其他 Activity 无法使用

转载 作者:行者123 更新时间:2023-11-29 01:04:13 26 4
gpt4 key购买 nike

我想要一个抽屉导航出现在多个 Activity 中,因此我创建了一个看起来像这样的 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)
//...

我的一个 Activity 想要包含 Navigation Drawer 看起来像

public class ExerciseActivity extends BaseDrawerActivity {
//...
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_exercise);


//...
}
//...

我的导航器抽屉出现在上述 Activity 中,但其内容不可点击/无法使用。就好像 BaseDrawerActivity 的东西在它上面。

有什么我想念的吗

我知道这也可以用 fragment 来完成,但我对此不感兴趣。

编辑:我被要求提供 .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 期望,对于 children 来说,它将表现为滑动抽屉,并且将充当抽屉关闭时显示的主要内容。如果你的布局代码,你没有第二个 child 来充当 DrawerLayout 里面的主要内容。相反,您创建了一个 FrameLayout 并将其作为同级添加到 DrawerLayout(不正确)。由于您将 DrawerLayout 内部的 ListView 指定为抽屉,即应用重力,并且没有主要内容,因此 DrawerLayout 不会为主要内容所在的位置绘制任何内容,实质上留下一个巨大的窗口,覆盖 DrawerLayout 到达的整个宽度和高度.由于 Android 的 View 系统的工作方式,所有内容都是自下而上绘制的,因此之前的 subview 在 Layout 容器中的最顶层 View 之前绘制(记住我说过 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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com