gpt4 book ai didi

java - Android CoordinatorLayout anchor 故障与键盘

转载 作者:太空狗 更新时间:2023-10-29 13:53:21 25 4
gpt4 key购买 nike

我正在尝试使用 CoordinatorLayout 将一个 View 锚定到另一个 View ,它几乎可以正常工作。问题是,当我切换到另一个 fragment ,打开键盘,然后切换回来时,锚定 View 变得困惑。有时几秒钟后它(看似)随机弹回原位。这是演示我在说什么的 gif。

enter image description here

如您所见,当我返回 fragment 时,FloatingActionButton 没有对齐,但过了一会儿它又弹回原位。什么可能导致此问题?

fragment XML

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

<!-- Other views -->

<!-- Bottom sheet -->
<include
android:id="@+id/bottom_sheet"
layout="@layout/bottom_sheet_primes"/>

<android.support.design.widget.FloatingActionButton
android:id="@+id/button_start"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="@dimen/fab_margin"
android:src="@drawable/ic_play_arrow_white_24dp"
app:backgroundTint="@color/accent"
app:layout_anchor="@id/bottom_sheet"
app:layout_anchorGravity="top|end"/>

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

最佳答案

解决方案是在 AndroidManifest.xml 文件中相关 Activity 的 Activity 标签中使用 android:windowSoftInputMode="adjustPan" 属性。

关于java - Android CoordinatorLayout anchor 故障与键盘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42916366/

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