我有一个使用fitsSystemWindows能够在导航栏和状态栏后面绘制背景的应用程序-不幸的是,SnackBar似乎忽略了容器中的fitsSystemWindows = true。我把问题归结为这个最小的应用程序:
风格:
<resources>
<style name="AppTheme" parent="Theme.AppCompat.Light">
<item name="android:windowBackground">@color/accent_material_dark</item>
<item name="android:fitsSystemWindows">false</item>
<item name="android:windowTranslucentStatus">true</item>
<item name="android:windowTranslucentNavigation">true</item>
</style>
</resources>
布局:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".MainActivity">
<Button
android:id="@+id/button"
android:text="@string/hello_world"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</RelativeLayout>
Activity :
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
findViewById(R.id.button).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(final View v) {
Snackbar.make(v,"This Snackbar should fitSystemWindows",Snackbar.LENGTH_INDEFINITE).show();
}
});
}
}
有人知道解决方法吗?
我发布了最小的应用程序以在此处显示问题:
https://github.com/ligi/SnackBarFitsSystemWindowProblem
最佳答案
Snackbar
始终会寻找自己定位的CoordinatorLayout
:当您没有CoordinatorLayout
时,它会使用完整的内容 View (在您的情况下,包括状态栏下方的区域)-添加具有fitsSystemWindows=true
的ojit_code应该可以做到这一点。