gpt4 book ai didi

android - 平板电脑上的 Snackbar 半宽

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:49:52 31 4
gpt4 key购买 nike

我在平板电脑(API 22)上设置 Snackbar 时遇到问题,在手机(API 23 和 22)上它工作正常(从边缘到边缘),即使是水平的。结果如下所示的 Snackbar:enter image description here

FloatingActionButton(支持库)也不会移动(在手机上会移动)。

我的布局:

<?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:id="@+id/snackParent"
android:layout_width="match_parent"
android:layout_height="match_parent">

<FrameLayout
android:id="@+id/frame"
android:layout_width="match_parent"
android:layout_height="match_parent" />

<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|right"
android:layout_marginBottom="@dimen/margin_fab"
android:layout_marginRight="@dimen/margin_fab"
app:pressedTranslationZ="12dp" />
</android.support.design.widget.CoordinatorLayout>

并在 MainActivity 中使用

private void showMessage(String msg) {
if(snackParent != null) {
snackbar = Snackbar.make(snackParent, msg, Snackbar.LENGTH_SHORT);
snackbar.setAction("OK", new View.OnClickListener() {
@Override
public void onClick(View v) {
snackbar.dismiss();
}
});
snackbar.show();
}
}

我只有其他资源文件,其中包含平板电脑 (w820dp) 的尺寸(fab margin),手机和平板电脑的样式文件夹相同。我也试过使 Android Studio 缓存失效。我使用 com.android.support:design:23.0.1 targetSdkVersion=23 和 compileSdkVersion=23, buildToolsVersion=23.0.1。

最佳答案

我认为这是平板电脑上 snackbar 的默认行为。检查this出。

enter image description here

关于android - 平板电脑上的 Snackbar 半宽,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32896816/

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