以下布局xml代码段正常。但是,如果我尝试删除其中的浮动操作按钮,背景颜色为" @ color / green"在主要布局元素中,IDEA / Android Studio布局编辑器会忽略它。
<?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"
tools:ignore="RtlHardcoded"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/green"
android:fitsSystemWindows="true">
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:onClick="callDirector"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="@dimen/fab_margin"
android:src="@android:drawable/ic_dialog_alert"/>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
android:background="@color/green"
tools:context="org.drachenschloss.bidzclient.MainActivity">
我完全满足于删除FAB和CoordinatorLayout(如果内存服务,我只将FAB的CoordinatorLayout放入),从而将所有xmlns元素移动到RelativeLayout,因为它将成为根活动的布局元素,但也没有帮助。
绿色背景颜色再次在应用程序中正常工作。它只是没有显示在IDE布局编辑器显示中。我甚至尝试过添加
tools:background="@color/green"
为了使根布局元素(无论哪个)使IDEA中的布局显示得到线索,但没有任何变化。 FAB消失的那一刻,活动的背景颜色也是如此。