gpt4 book ai didi

android - 解锁锁定屏幕后如何将 float 操作按钮固定在我的 View 中?

转载 作者:行者123 更新时间:2023-11-30 00:20:16 25 4
gpt4 key购买 nike

我有一个 FloatingButton 锚定到 CoordinatorLayout 中的 View ,一切正常,但如果我锁定屏幕并解锁,FloatinButton 将失去其锚定属性并在底部 float 一段时间。

源代码:

<?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="com.example.user.myapplication.ScrollingActivity">

<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar"
android:layout_width="match_parent"
android:layout_height="@dimen/app_bar_height"
android:fitsSystemWindows="true"
android:theme="@style/AppTheme.AppBarOverlay">

<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/toolbar_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:layout_scrollFlags="scroll|exitUntilCollapsed">

<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/AppTheme.PopupOverlay" />

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

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

<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/fab_margin"
app:layout_anchor="@id/app_bar"
app:layout_anchorGravity="bottom|end"
app:srcCompat="@android:drawable/ic_dialog_email" />

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

如您所见,floatingButton 锚定到 app_bar View :

enter image description here

但是,如果屏幕在运行此 Activity 时被锁定和解锁,我将等待几秒钟:

enter image description here

此问题出现在 Android 4.2 及以上版本,

一些想法?

最佳答案

我终于找到了一个解决方案,只需在 Activity 的 onPause() 方法中将 FloatingActionButton 的可见性设置为 GONE,然后在 Activity 的 onResume() 方法中将其可见性设置为 VISIBLE,在这种情况下效果很好,因为 FloatingActionButton再次显示时恢复其锚定属性,

源代码:

    @Override
protected void onResume() {
fab.setVisibility(View.VISIBLE);
super.onResume();
}

@Override
protected void onPause() {
super.onPause();
fab.setVisibility(View.GONE);
}

就是这样

希望它能帮助大家解决这个奇怪的问题。

关于android - 解锁锁定屏幕后如何将 float 操作按钮固定在我的 View 中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46434460/

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