gpt4 book ai didi

android - 如何在 fragment 中隐藏 Activity View

转载 作者:搜寻专家 更新时间:2023-11-01 08:27:33 33 4
gpt4 key购买 nike

我是 android 开发的新手,正在尝试开发简单的新闻应用程序。但是我在使用 fragment 时遇到了问题。

这是我的 Activity 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"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">

<include layout="@layout/app_container_view"/>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<!-- The main content view -->
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent" />

</LinearLayout>

<android.support.design.widget.NavigationView
android:id="@+id/navigation_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
app:menu="@menu/drawer_view"
app:headerLayout="@layout/nav_header">

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

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

app_container_view xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/coordinatorLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.design.widget.AppBarLayout
android:id="@+id/appBarLayout"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:fitsSystemWindows="true">

<include
layout="@layout/toolbar" />

<android.support.design.widget.TabLayout
android:id="@+id/tab_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabTextColor="@android:color/white"
app:tabSelectedTextColor="@android:color/white"
app:tabIndicatorHeight="6dp"
app:tabMaxWidth="0dp"
app:tabMode="scrollable"
android:background="?attr/colorPrimary"
android:minHeight="?attr/actionBarSize" />

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

<android.support.v4.view.ViewPager
android:id = "@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>

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

工具栏 xml

 <?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:layout_scrollFlags="scroll|enterAlways">

<TextView
android:id="@+id/toolbar_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="EastNews"
style="@style/Toolbar.TitleText"
android:layout_gravity="center"
/>

</android.support.v7.widget.Toolbar>

当我用事务替换 fragment 时,它只更改 fragment 中的工具栏,其余部分继承自 Activity View 。我不希望 Activity 选项卡和其他 View 在 fragment UI 上可见。

fragment xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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">

<include
layout="@layout/toolbar" />

<!-- <android.support.v7.widget.RecyclerView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/recyclerIraq"
android:layout_margin="16dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"/> -->

我已经用这种方式替换了 fragment

 boolean fragmentPopped = fragmentManager.popBackStackImmediate(fragment.getClass().getName(),0);

if(!fragmentPopped && fragmentManager.findFragmentByTag(fragment.getClass().getName()) == null) {
FragmentTransaction transaction = fragmentManager.beginTransaction();
transaction.replace(R.id.content_frame, fragment, fragment.getClass().getName());
transaction.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_FADE);
transaction.addToBackStack(fragment.getClass().getName());
transaction.commit();
}

感谢 Rahul,问题已经解决。在发布问题之前,我尝试通过将 setVisibility(View.GONE) 添加到 attach() 并将 setVisibility(View.VISIBLE) 添加到 detach() 方法来解决这个问题。它也有效,但 Activity View 加载缓慢。

最佳答案

fragment.xml 的父级 RelativeLayout 中添加以下两行:

android:background="@color/white"
android:clickable="true"

背景颜色是您 fragment 的背景颜色。这样,当您打开 fragment 时,您将无法看到 Activity View 。希望对您有所帮助。

关于android - 如何在 fragment 中隐藏 Activity View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43386800/

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