您的位置:首页 > 移动开发 > Android开发

Android中的错误:Wrong orientation? No orientation specified, and the default is horizontal

2015-05-18 10:32 645 查看
错误:Wrong orientation? No orientation specified, and the default is horizontal, yet this layout has multiple children where at least one has layout_width="match_parent"

解决办法:

在android:text="XXX"时上面老是报错那个错误,是由于你的一行代码还没有加入到<LinearLayout>那个标签中的,只需加上这一行代码即可解决这个难题

android:orientation="horizontal"

有人会问当用了android:orientation="horizontal"运行之后界面只显示一个<Textview>而自己写了4个<Textview>这是因为它的属性是为垂直线性布局的,所以只有一个显示。

解决办法:

改为下面的布局

android:orientation = "vertical"
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐