我有2天的Android體驗...
這種佈局中的標記有什麼問題?
它說標記開始沒有關閉,但我不必關閉每個TextView與/>
,對不對?爲什麼我的標籤沒有正確關閉?
該教程的傢伙說,你只需要在最後只輸入一個/>
?
<RelativeLayout 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">
<TextView
android:text="Happy Birthday Mert"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
<TextView
android:text="from cengiz"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/cake"
/>
</RelativeLayout>