在 android studio 中使用视图时出现渲染问题

Getting rendering problems while using view in android studio

我是 android 工作室的新手。当我在 android studio 中使用 new 时,我在预览中遇到渲染问题。

没有观看:

但是当我使用视图时出现渲染问题:

我很困惑为什么会这样。请帮助我。

在 xml 中使用 View 而不是 view :

<View 
 android:layout_width="fill_parent"
 android:layout_height="fill_parent" />

对于视图的高度和宽度也使用 match_parent 而不是 fill_parent 因为 fill_parent 常量从 API 级别 8 开始被弃用并被 [=13 取代=].

有关详细信息,请参阅此 post:

What is the difference between match_parent and fill_parent?