2017-07-24 61 views
0

我是新來的XML,我無法過去「多根標籤」錯誤,我已經讀過其他問題,但似乎沒有工作,我該如何解決它?多根標籤Android Studio

<?xml version="1.0" encoding="utf-8"?> 
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    tools:context=".MainActivity" /> 

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:orientation="vertical"> 

<TextView 
    android:id="@+id/Quantity" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_margin="8dp" 
    android:text="@strig/quantity" 
    android:textAllCaps="true" 
    android:textColor="@android:color/darker_gray" 
    android:textSize="16sp" 
    android:textStyle="bold" /> 

</LinearLayout> 
+2

有什麼錯誤? –

+0

在此處添加出現在android studio中的日誌,以查看代碼中發生了什麼... – DarckBlezzer

回答

0

您的佈局應該是這樣的:

<?xml version="1.0" encoding="utf-8"?> 
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:tools="http://schemas.android.com/tools" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
tools:context=".MainActivity" > 

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:orientation="vertical"> 

<TextView 
android:id="@+id/Quantity" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:layout_margin="8dp" 
android:text="@strig/quantity" 
android:textAllCaps="true" 
android:textColor="@android:color/darker_gray" 
android:textSize="16sp" 
android:textStyle="bold" /> 

</LinearLayout> 
</android.support.constraint.ConstraintLayout> 
0

您的佈局只能有一個頂級標籤。你目前有兩個(ConstraintLayout和LinearLayout)。可能你並不是想用/>來結束ConstraintLayout標籤;刪除斜線並在文件底部添加結束標記。