如何修复android studio上的渲染问题

时间:2016-01-06 20:06:03

标签: android android-layout android-theme

好吧我已经尝试了一切我可以解决它但每次我改变主题我总是得到一个渲染错误可以一些帮助我

this is what it looks like

渲染问题缺少样式。是否为此布局选择了正确的主题?使用布局上方的主题组合框选择不同的布局,或修复主题样式引用。注意:一个或多个布局缺少layout_width或layout_height属性。大多数布局都需要这些。

1 个答案:

答案 0 :(得分:1)

如错误日志中明确说明的那样,您必须将layout_widthlayout_height属性设置为所有xml个文件中的所有布局。

换句话说,您的布局文件应该在其标记内包含类似的内容。

android:layout_width="wrap_content"
android:layout_height="wrap_content"

您应该根据自己想要的方式将其设置为wrap_contentmatch_parent