标签:
链接地址:http://jingyan.baidu.com/article/a24b33cd7722dc19fe002bd0.html
No orientation specified, and the default is horizontal. This is a common source of bugs when children are added dynamically.
没有方向指定,默认是水平的。
出现这种问题是因为直接布局无法定位其方向性,而在使用<LinearLayout>标签要指明方向
只要指定一个orientation(定向,方向,定位)
语句为:
android:orientation = "vertical"
在tab1下回车,
并写入语句:
这时仍然提示错误,是因为你没有保存,保存(Ctrl+s)后即能解决:
最后分别在tab2与tab3写入语句:android:orientation = "vertical"
最后保存(Ctrl+s)即可:
No orientation specified, and the default is
原文地址:http://www.cnblogs.com/wvqusrtg/p/5174693.html