在linearLayout中收到错误

时间:2017-11-22 08:43:19

标签: android

我似乎在linearLayoutandroid:Layout_width时出现错误,并且身高不足。如果有人可以提供帮助,请参阅下面的代码。我很感激

xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:android="http://schemas.android.com/tools"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent">

2 个答案:

答案 0 :(得分:3)

您需要替换布局的第二行。您还提到了xmlns:android工具。请更换您的布局,如下所示。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout

xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent">

答案 1 :(得分:0)

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:paddingLeft="16dp"
   android:paddingRight="16dp"
   android:orientation="horizontal"
   android:gravity="center">

 </LinearLayout>

如果不起作用,请尝试清理项目并重建