问题:在android studio布局预览中没有考虑布局中的ssh
。为什么会如此?如何在布局预览中正确显示?
我正在使用带有以下标志的主题
if something in ['name_'+str(i+1) for i in range(5)]
我有一个布局文件
android:fitsSystemWindows="true"
正如您所见,“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>
正在此处工作)