为特定片段隐藏 ActionBar 的问题

Posted

技术标签:

【中文标题】为特定片段隐藏 ActionBar 的问题【英文标题】:problem with hiding ActionBar for specific Fragment 【发布时间】:2019-03-05 20:18:39 【问题描述】:

在过去的 2 周里,我正在研究 TabLayout 、 viewPager 、 RecyclerView 和片段的组合,所以这是问题所在。

我想隐藏特定 Fragment 的 ActionBar,我在 Fragment 类中这样做:

公共类 MA0FragmentWord 扩展 android.support.v4.app.Fragment

View v;

private RecyclerView recyclerView;
private List<MA0WordItems> mList;
private List<MA0WordItems> mlistFull;


public MA0FragmentWord()


@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) 

    setHasOptionsMenu(true);

    v = inflater.inflate(R.layout.word_fragment0,container,false);

    recyclerView = v.findViewById(R.id.word_recycler0);

    MA0RecyclerAdapter recyclerAdapter = new MA0RecyclerAdapter(getContext(),mList);
    recyclerView.setLayoutManager(new LinearLayoutManager(getActivity()));
    recyclerView.setAdapter(recyclerAdapter);

    recyclerView.addOnScrollListener(new RecyclerView.OnScrollListener() 


         @Override
        public void onScrolled(RecyclerView recyclerView, int dx, int dy) 
            super.onScrolled(recyclerView, dx, dy);

            if (dy > 10) 
            // View view = recyclerView.getLayoutManager().getChildAt(0);
                ((AppCompatActivity)getActivity()).getSupportActionBar().hide();

             else if (dy<0)

                ((AppCompatActivity)getActivity()).getSupportActionBar().show();
            
        

    );

    return v;

它似乎可以正常工作,但问题是我的 xml 布局似乎有一个错误,并且在视图底部呈现某种问题。我也更改为线性布局,但没有任何改变(当操作栏隐藏视图时,视图顶部因此我的视图底部也上升并创建一些空白),(抱歉英语不好)

<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_
android:layout_
android:background="@color/colorPrimaryDark"
android:orientation="vertical"
tools:context=".MainActivity0">

<android.support.design.widget.TabLayout
    android:id="@+id/tabLayout0"
    android:layout_
    android:layout_
    android:background="@color/colorPrimaryDark"
    app:layout_constraintBottom_toTopOf="@+id/viewPager0"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    app:tabBackground="@color/colorPrimaryDark"
    app:tabIndicatorColor="#d4d4d4"
    app:tabMode="fixed"
    app:tabSelectedTextColor="#a6ae3d"
    app:tabTextColor="#d4d4d4">

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

<android.support.v4.view.ViewPager
    android:id="@+id/viewPager0"
    android:layout_
    android:layout_
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/tabLayout0">

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

<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:background="@color/colorPrimaryDark"
android:layout_
android:layout_>

<android.support.v7.widget.RecyclerView
    android:id="@+id/word_recycler0"
    android:scrollbars="vertical"
    android:layout_
    android:layout_>

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

【问题讨论】:

【参考方案1】:

对于遇到与我相同问题的任何人,我放弃了隐藏操作栏(它实际上隐藏但我解释了一些问题......)所以我们可以做一些其他事情,我们可以隐藏操作栏清单:

android:theme="@style/Theme.Design.NoActionBar">

当然,我们可以隐藏/显示特定活动的操作栏,如下所示:

<activity android:name=".MainActivity0"
        android:label="Lets Talk"
        android:theme="@style/CustomTheme"></activity>

我们可以轻松地从 Fragment Activity 访问 Main Activity 元素并实现滚动更改,如下所示:

recyclerView.addOnScrollListener(new RecyclerView.OnScrollListener() 


         @Override
        public void onScrolled(RecyclerView recyclerView, int dx, int dy) 
            super.onScrolled(recyclerView, dx, dy);

            if (dy > 0) 
               TabLayout tabLayout =((AppCompatActivity)getActivity()).findViewById(R.id.tabLayout0);
               tabLayout.setVisibility(View.GONE);




             else if (dy<0)

                TabLayout tabLayout =((AppCompatActivity)getActivity()).findViewById(R.id.tabLayout0);
                tabLayout.setVisibility(View.VISIBLE);
            
        

    );

所以实际上我们不必在滚动时隐藏/显示操作栏,我们可以使用视图并实现独立的元素并隐藏/显示它,就像我展示的那样。 如果你知道任何更简单的方法,我想知道。

【讨论】:

以上是关于为特定片段隐藏 ActionBar 的问题的主要内容,如果未能解决你的问题,请参考以下文章

如何隐藏默认片段 actionBar 在 android & kotlin 中创建我们自己的 actionBar

从片段中隐藏 NavigationDrawer 和 ActionBar

将视图粘贴在协调器布局内的 viewpager 片段的底部

显示 ActionBar 选项卡的两个片段

ActionBar Sherlock ,操作栏选项卡和片段

从android中的片段更改自定义ActionBar标题