Wrong orientation? No orientation specified, and the default is horizontal, yet this la:

来源:互联网 发布:linux查看用户登录日志 编辑:程序博客网 时间:2024/05/18 00:03
文章源自:http://www.cxybl.com/html/android/20130706/38941.html

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=就不时上面老是报错那个错误,是由于你的一行代码还没
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="就不"时上面老是报错那个错误,是由于你的一行代码还没有加入到<LinearLayout>那个标签中的,只需加上这一行代码即可解决这个难题
  android:orientation="horizontal"
有人会问当用了android:orientation="horizontal"运行之后界面只显示一个<Textview>而自己写了4个<Textview>这是因为它的属性是为垂直线性布局的,所以只有一个显示。
解决办法:
改为下面的布局
android:orientation = "vertical"

0 0
原创粉丝点击