SnackBar 和 fitsSystemWindows
SnackBar and fitsSystemWindow
我有一个应用程序使用 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
有 fitsSystemWindows=true
应该做到这一点。
嗯正确答案是添加
android:paddingbottom="50dp"
到您的 CoordinatorLayout
虽然我不确定是否所有导航栏大小都是 50 dp
您还可以使用以下行代替 Snackbar 声明 中的任何 CoordinatorLayout 和 findViewById(android.support.design.R.id.design_navigation_view) .
我有一个应用程序使用 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
有 fitsSystemWindows=true
应该做到这一点。
嗯正确答案是添加
android:paddingbottom="50dp"
到您的 CoordinatorLayout
虽然我不确定是否所有导航栏大小都是 50 dp
您还可以使用以下行代替 Snackbar 声明 中的任何 CoordinatorLayout 和 findViewById(android.support.design.R.id.design_navigation_view) .