我Snackbar
在平板电脑(API 22)和手机(API 23 和 22)上的设置有问题(从边缘到边缘),即使是水平的也是如此。结果是这样的 Snackbar 如下:
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)的尺寸(工厂边距)的其他资源文件,手机和平板电脑之间的样式文件夹相同。我也尝试过使 Android Studio 缓存无效。我使用com.android.support:design:23.0.1
targetSdkVersion=23 和 compileSdkVersion=23, buildToolsVersion=23.0.1。