gpt4 book ai didi

android - 如果折叠,则在 backPressed 时工具栏消失

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:22:49 30 4
gpt4 key购买 nike

我的工具栏在按下后退时变得不可见或消失。这种情况只有在工具栏折叠时才会发生。

  1. 我在 Fragment 上有一个 RecyclerView
  2. 当我滚动回收器时,工具栏会折叠
  3. 如果我进入下一个 Activity ,由一些回收程序 itens 调用,然后按后退按钮,工具栏就会消失。
  4. 如果我滚动回收器,折叠仍然会发生,但工具栏不存在,只有一个垂直空间,上面什么也没有。

fragment 布局

<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:fitsSystemWindows="true">

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


<!--Toolbar-->
<android.support.v7.widget.Toolbar
style="@style/mytoolbar_details"
android:id="@+id/toolbar"
app:layout_scrollFlags="scroll|enterAlways"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
android:background="@color/theme_primary"
app:layout_collapseMode="none" />

<!--Toolbar Sort-->
<android.support.v7.widget.Toolbar
style="@style/mytoolbar_details"
android:id="@+id/toolbar_sort"
android:title="Toolbar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
android:background="@color/theme_primary_dark"
android:visibility="gone"
app:layout_collapseMode="pin" />

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

<android.support.v7.widget.RecyclerView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/fragment_tasklist_recyclerview"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />

<!--ADD Fragment Container-->
<RelativeLayout
android:id="@+id/add_container"
android:layout_width="match_parent"
android:fitsSystemWindows="true"
android:layout_height="match_parent" />
</android.support.design.widget.CoordinatorLayout>

在 Fragment 上调用布局

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
fragmentView = inflater.inflate(R.layout.tasklist_fragment, container, false);

一些可能的问题

W/View﹕ requestLayout() improperly called by android.support.v7.widget.Toolbar{335f934 V.E..... ......ID 0,0-1080,168 #7f0d009c app:id/toolbar} during layout: running second layout pass

W/View﹕ requestLayout() improperly called by android.support.design.widget.CollapsingToolbarLayout{3c2cf991 V.ED.... ......I. 0,0-1080,420 #7f0d009a app:id/collapsing_toolbar} during second layout pass: posting in next frame

最佳答案

原来我的代码没问题。该问题是由 appcompat 库中的一些错误引起的。我刚刚将支持库更新到版本 22.2.1,问题消失了。

compile "com.android.support:appcompat-v7:22.2.1"
compile "com.android.support:support-annotations:22.2.1"
compile "com.android.support:design:22.2.1"
compile 'com.android.support:recyclerview-v7:22.2.1'
compile 'com.android.support:cardview-v7:22.2.1'

关于android - 如果折叠,则在 backPressed 时工具栏消失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31529238/

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