fitsSystemWindows在android studio布局预览中

时间:2017-10-31 10:32:43

标签: android android-studio

问题:在android studio布局预览中没有考虑布局中的ssh。为什么会如此?如何在布局预览中正确显示?

我正在使用带有以下标志的主题

if something in ['name_'+str(i+1) for i in range(5)]

我有一个布局文件

android:fitsSystemWindows="true"

这就是预览中的样子 enter image description here

这就是它在设备上的外观 enter image description here

正如您所见,“Hello World!”布局预览中的系统栏重叠(<item name="android:windowTranslucentStatus">true</item> <item name="android:windowTranslucentNavigation">true</item> 在这里不起作用),但位于设备上的系统栏下方(<?xml version="1.0" encoding="utf-8"?> <android.support.design.widget.CoordinatorLayout 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"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Hello World!"/> </android.support.design.widget.CoordinatorLayout> 正在此处工作)

0 个答案:

没有答案