Android布局文件LinearLayout报错!
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android布局文件LinearLayout报错!相关的知识,希望对你有一定的参考价值。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/name" />
<EditText
android:id="@+id/editname"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:inputType="textPersonName" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/psw" />
<EditText
android:id="@+id/editpsw"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:inputType="textPassword" />
</LinearLayout>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<Button
android:id="@+id/logina"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/login" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/out" />
</LinearLayout>
第二个LINEARLAYOUT报错了,什么原因?我想让后面的两个按钮水平排列,前面的垂直排列。是因为一个XML内只能有一个LinearLayout吗?应该怎么改?请教大神,谢谢~
LinearLayout报错一般是属性设置错误。该题的错误是违反了android布局文件跟节点的布局只能有一个,这里同时存在两个linearlayout。
解决方式:
把两个布局文件合成一个,把水平布局的LinearLayout嵌套到垂直布局的LinearLayout中。
修改如下:
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
。。。一堆元素
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
。。。一堆元素
</LinearLayout>
</LinearLayout> 参考技术A 对 你这样就有了两个布局 系统不能解析,你可以把两个LinearLayout放在一个最外层的LinearLayout里面,或者用一个RelativeLayout去管理... 呵呵 有问题请继续追问哟本回答被提问者和网友采纳 参考技术B layout布局文件名首字母小写 参考技术C 把这两个linearlayout放到另外一个linearlayout中就行了 参考技术D
报了什么样的错,你这样说别人都不知道你出错的地方在哪里
线性布局必须要有方向属性的,你看看是不是少了方向属性
以上是关于Android布局文件LinearLayout报错!的主要内容,如果未能解决你的问题,请参考以下文章
android设置linearlayout布局的背景颜色,怎么动态改变背景颜色?
Android布局---LinearLayout(线性布局)