gpt4 book ai didi

java - Android - 没有错误但无法插入 fragment

转载 作者:行者123 更新时间:2023-12-01 10:17:01 24 4
gpt4 key购买 nike

我是 Android 应用程序的新手,我现在正在尝试将 fragment 插入 <FrameLayout> 。这是我的代码:

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout 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:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">

<include
layout="@layout/app_bar_main"
android:layout_width="match_parent"
android:layout_height="match_parent" />

<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:headerLayout="@layout/nav_header_main"
app:menu="@menu/activity_main_drawer" />

</android.support.v4.widget.DrawerLayout>

app_bar_main.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout 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"
android:fitsSystemWindows="true"
tools:context="ycl.com.remotearduino.MainActivity">

<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />

</android.support.design.widget.AppBarLayout>

<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</android.support.design.widget.CoordinatorLayout>

content_settings.xml:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".SettingsFragment">

<!-- TODO: Update blank fragment layout -->
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Ho man!" />

</FrameLayout>

SettingsFragment.java 的一部分:

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
return inflater.inflate(R.layout.content_settings, container, false);
}

MainActivity.java的onCreate部分:

SettingsFragment settingsFragment = new SettingsFragment();

FragmentTransaction fragmentTransaction = getSupportFragmentManager().beginTransaction();
fragmentTransaction.add(R.id.content_frame, settingsFragment).commit();

当我运行应用程序时,没有错误,但 fragment 根本不显示。有人知道为什么会这样吗?

编辑:我注意到 onCreateView 中的 inflate 方法根本没有执行,因为我现在处于 DEBUG 模式,但标签“LayoutInflator”不显示向上。根据 LayoutInflater 源代码,它应该打印“INFLATING from resources: ...”...

编辑:onCreateView()确实执行了,但仍然没有inflate()方法的迹象...

最佳答案

将其添加到您的 FrameLayout:

 <FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>

您的 SettingsFragment 可见,但由于 CoordinatorLayout,其中的文本位于工具栏后面。尝试添加更多文本,您就会看到。要解决此问题,请使用上述解决方案。

关于java - Android - 没有错误但无法插入 fragment ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35838665/

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