gpt4 book ai didi

android - 如何正确实现 Snackbar、Coordinator Layout 和 bottom|right FAB?

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

我目前正在使用设计支持库。我已经尝试用我的 CoordinatorLayout 包装整个布局来实现 Snackbar。当要显示 Snackbar 时,它会引发 FAB。但它不会努力下降,因此停留在平移距离之上。

但是,当我通过滑动 Snackbar 将其关闭时,它确实会下降。所以 CoordinatorLayout 知道包裹在里面的 FAB。

.xml

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/res-auto"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/coordinator_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">

<RelativeLayout
android:id="@+id/relative_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/primary"
android:elevation="4dp"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" />

<com.google.android.gms.ads.AdView
android:id="@+id/ad_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/toolbar"
android:layout_centerHorizontal="true"
android:layout_gravity="center_horizontal"
ads:adSize="BANNER"
ads:adUnitId="@string/banner_ad_unit_id" />

<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/ad_view">

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

</ScrollView>

</RelativeLayout>

<android.support.design.widget.FloatingActionButton
android:id="@+id/btn_generate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|right|end"
android:layout_margin="16dp"
android:src="@drawable/ic_refresh_white_24dp"
app:elevation="6dp"
app:fabSize="normal"
app:pressedTranslationZ="12dp" />

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

.java

Snackbar.make(mCoordinatorLayout, R.string.copied_to_clipboard,
Snackbar.LENGTH_SHORT).show();

最佳答案

如果你想显示 Snackbar,当它出现时,CoordinatorLayout 将被调整,然后尝试下面的代码

findViewById(R.id.btn_generate).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Snackbar.make(view, "Hello Snackbar", Snackbar.LENGTH_LONG).show();
}
});

关于android - 如何正确实现 Snackbar、Coordinator Layout 和 bottom|right FAB?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34093877/

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