gpt4 book ai didi

android - 带有协调器 View 的 snackbar 出现后布局 View 卡住

转载 作者:太空狗 更新时间:2023-10-29 14:48:37 25 4
gpt4 key购买 nike

我已经成功地使用围绕 fragment 中 MapView 的协调器布局成功地展示了 snackbar 。 map View 成功向上滑动,为 snackbar 留出空间,但是,一旦 snackbar 消失, View 就会保持原样,并在 snackbar 出现的地方留下一个白色的酒吧。我怎样才能解决这个问题?我目前在 map View 上应用以下代码作为行为:

    @Override
public boolean onDependentViewChanged(CoordinatorLayout parent, View child, View dependency) {
float translationY = Math.min(0, dependency.getTranslationY() - dependency.getHeight());
child.setTranslationY(translationY);
return true;
}

@Override
public boolean layoutDependsOn(CoordinatorLayout parent, View child, View dependency) {
// we only want to trigger the change
// only when the changes is from a snackbar
return dependency instanceof Snackbar.SnackbarLayout;
}

我的 fragment View 是这样的:

<android.support.design.widget.CoordinatorLayout
android:id="@+id/places_coordinator_layout"
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">

<com.google.android.gms.maps.MapView
android:id="@+id/mapView"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="com.adamshort.canieatthis.FloatingActionButtonBehaviour"/>

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

我试过四处搜索,但要么我搜索的是错误的东西,要么我没有人遇到过类似的问题。我已经看到我在各种教程和视频中发布并成功运行的行为代码,但它在 map View 中表现不佳。有什么想法吗?

最佳答案

拜托,我下面的回答是试图帮助你......如果对你有帮助,请告诉我......然后,如果它没有用,我会删除......

也许,您需要定义并定位到您的 MapView。在我的例子中,我必须在底部创建一个虚拟 View 并将其设置为将随 SnackBar 移动的 View 的 archor

<android.support.design.widget.CoordinatorLayout
android:id="@+id/places_coordinator_layout"
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.support.v4.widget.Space
android:id="@+id/anchor"
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@android:color/transparent"
android:layout_gravity="bottom" />

<com.google.android.gms.maps.MapView
android:id="@+id/mapView"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_anchor="@id/anchor"
app:layout_behavior="com.adamshort.canieatthis.FloatingActionButtonBehaviour"/>

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

关于android - 带有协调器 View 的 snackbar 出现后布局 View 卡住,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37264484/

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