平板电脑上的 Snackbar 半宽
Snackbar half width on tablet
我在平板电脑 (API 22) 上设置 Snackbar
时遇到问题,在 phones (API 23 和 22) 上它工作正常(从边缘到边缘),即使是水平的。
结果是这样的 Snackbar:
FloatingActionButton(支持库)也不会移动(在 phone 上它会移动)。
我的布局:
<?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),样式文件夹在 phone 和平板电脑之间相同。我还尝试使 Android Studio 缓存失效。
我使用 com.android.support:design:23.0.1
targetSdkVersion=23 和 compileSdkVersion=23, buildToolsVersion=23.0.1.
我认为这是平板电脑上 snackbar 的默认行为。检查 this .
您可以随心所欲地使用小吃吧。我们在平板电脑上遇到了同样的问题,我们这样解决了(例如,下面的代码将 snackbar 定位在顶部并为其提供父级的全宽)
View view = snackbar.getView();
// Position snackbar at top
FrameLayout.LayoutParams params = (FrameLayout.LayoutParams)view.getLayoutParams();
params.gravity = Gravity.TOP | Gravity.CENTER_HORIZONTAL;
params.width = FrameLayout.LayoutParams.MATCH_PARENT;
view.setLayoutParams(params);
ViewGroup.LayoutParams layoutParams = snackbarView.getLayoutParams();
if (layoutParams instanceof FrameLayout.LayoutParams) {
FrameLayout.LayoutParams params = (FrameLayout.LayoutParams) layoutParams;
params.gravity = Gravity.TOP;
params.width = FrameLayout.LayoutParams.MATCH_PARENT;
snackbarView.setLayoutParams(params);
} else if (layoutParams instanceof CoordinatorLayout.LayoutParams) {
CoordinatorLayout.LayoutParams params = (CoordinatorLayout.LayoutParams) layoutParams;
params.gravity = Gravity.TOP;
params.width = FrameLayout.LayoutParams.MATCH_PARENT;
snackbarView.setLayoutParams(params);
} else {
FrameLayout.LayoutParams params = (FrameLayout.LayoutParams) layoutParams;
params.gravity = Gravity.TOP;
params.width = FrameLayout.LayoutParams.MATCH_PARENT;
snackbarView.setLayoutParams(params);
}
我在平板电脑 (API 22) 上设置 Snackbar
时遇到问题,在 phones (API 23 和 22) 上它工作正常(从边缘到边缘),即使是水平的。
结果是这样的 Snackbar:
FloatingActionButton(支持库)也不会移动(在 phone 上它会移动)。
我的布局:
<?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),样式文件夹在 phone 和平板电脑之间相同。我还尝试使 Android Studio 缓存失效。
我使用 com.android.support:design:23.0.1
targetSdkVersion=23 和 compileSdkVersion=23, buildToolsVersion=23.0.1.
我认为这是平板电脑上 snackbar 的默认行为。检查 this .
您可以随心所欲地使用小吃吧。我们在平板电脑上遇到了同样的问题,我们这样解决了(例如,下面的代码将 snackbar 定位在顶部并为其提供父级的全宽)
View view = snackbar.getView();
// Position snackbar at top
FrameLayout.LayoutParams params = (FrameLayout.LayoutParams)view.getLayoutParams();
params.gravity = Gravity.TOP | Gravity.CENTER_HORIZONTAL;
params.width = FrameLayout.LayoutParams.MATCH_PARENT;
view.setLayoutParams(params);
ViewGroup.LayoutParams layoutParams = snackbarView.getLayoutParams();
if (layoutParams instanceof FrameLayout.LayoutParams) {
FrameLayout.LayoutParams params = (FrameLayout.LayoutParams) layoutParams;
params.gravity = Gravity.TOP;
params.width = FrameLayout.LayoutParams.MATCH_PARENT;
snackbarView.setLayoutParams(params);
} else if (layoutParams instanceof CoordinatorLayout.LayoutParams) {
CoordinatorLayout.LayoutParams params = (CoordinatorLayout.LayoutParams) layoutParams;
params.gravity = Gravity.TOP;
params.width = FrameLayout.LayoutParams.MATCH_PARENT;
snackbarView.setLayoutParams(params);
} else {
FrameLayout.LayoutParams params = (FrameLayout.LayoutParams) layoutParams;
params.gravity = Gravity.TOP;
params.width = FrameLayout.LayoutParams.MATCH_PARENT;
snackbarView.setLayoutParams(params);
}