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

来源:互联网 发布:mac自动登入灰色 编辑:程序博客网 时间:2024/06/15 02:59

错误: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"


0 0
原创粉丝点击