-1
如果我處於佈局文件中,並且按CMD/CTRL + N,則可以選擇選擇XML標記或版權。當我選擇XML標籤並從列表中選擇TextView時,它會生成以下內容;Android Studio Auto XML標記生成
<TextView
layout_width=""
layout_height=""/>
這給出了一個錯誤,因爲它應該是;
<TextView
android:layout_width=""
android:layout_height=""/>
有誰知道如何解決這個問題?
完整的XML代碼
<FrameLayout 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="cc.zahid.cheatsheet.MainFragment">
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/hello_blank_fragment"/>
<android.support.design.widget.CoordinatorLayout
android:id="@+id/rootLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="20dp"
android:src="@android:drawable/ic_dialog_email"/>
</android.support.design.widget.CoordinatorLayout>
</FrameLayout>
找不到任何可以解決這個問題。 –
你可以發佈你的根標籤代碼嗎? –
更新了我的問題:) –