gpt4 book ai didi

android - 如何仅在某些 fragment 中启用 tablayout?

转载 作者:搜寻专家 更新时间:2023-11-01 09:41:10 26 4
gpt4 key购买 nike

我在 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"
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent">

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

<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:contentScrim="?attr/colorPrimary"
app:expandedTitleMarginEnd="64dp"
app:expandedTitleMarginStart="48dp"
app:layout_scrollFlags="scroll|exitUntilCollapsed">

<ImageView
android:id="@+id/collapse"
android:layout_width="match_parent"
android:layout_height="256dp"
android:fitsSystemWindows="true"
android:scaleType="centerCrop"
app:layout_collapseMode="parallax" />

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

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

<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content" />

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

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



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

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

我在其中启用/禁用带有界面的 collapsingToolbarLayout。

问题是当我想在嵌套 fragment 中使用 TabLayout 时。事实上,如果我尝试做的是:

  public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {

View inflatedView = inflater.inflate(R.layout.fragment_add_parking, container,false);

tabLayout = (TabLayout)inflatedView.findViewById(R.id.tabs);
tabLayout.setVisibility(View.VISIBLE);
}

我得到一个 NullPointerException,因为在我的嵌套 fragment 布局中我只有 viewPager:

<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="wrap_content"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical">


<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="wrap_content"
android:layout_height="436dp"
android:layout_gravity="center"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_below="@+id/tabs"
android:layout_alignParentBottom="true">

</android.support.v4.view.ViewPager>



</RelativeLayout>

那么我如何才能仅在某些嵌套 fragment 中启用/禁用 tabLayout?我必须将它放在 fragment 的布局中,否则我可以在 Activity 中使用它吗?

非常感谢。

最佳答案

tableLayout 在 Activity 布局中,但您在 fragment 布局中搜索才能找到它。
将此添加到 fragment onCreateView() 并删除其他代码:

((YourActivity)getActivity()).tabLayout.setVisibility(View.Gone|View.Visible);

而tabLayout在activty中大多是public object

关于android - 如何仅在某些 fragment 中启用 tablayout?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39753619/

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