Marshmallow 软件按钮下方的 Snackbar
Snackbar coming below the software buttons in Marshmallow
我的 Snackbar 位于 Marshmallow 软件按钮下方:
我试过改变视图,但没有用。
通常 Snackbar 需要 CoordinatorLayout 或 window 装饰的内容,它们被视为 Snackbar 的父布局。以前,它没有获取任何父布局,因此它直接将 WindowManager 布局视为父布局。使用 CoordinatorLayout 作为父布局,解决了这个问题。
CoordinarLayout的示例代码如下:
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:nimbuzz="http://schemas.android.com/apk/res-auto"
android:layout_height="match_parent"
android:layout_width="match_parent">
</android.support.design.widget.CoordinatorLayout>
我的 Snackbar 位于 Marshmallow 软件按钮下方:
我试过改变视图,但没有用。
通常 Snackbar 需要 CoordinatorLayout 或 window 装饰的内容,它们被视为 Snackbar 的父布局。以前,它没有获取任何父布局,因此它直接将 WindowManager 布局视为父布局。使用 CoordinatorLayout 作为父布局,解决了这个问题。
CoordinarLayout的示例代码如下:
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:nimbuzz="http://schemas.android.com/apk/res-auto"
android:layout_height="match_parent"
android:layout_width="match_parent">
</android.support.design.widget.CoordinatorLayout>