【发布时间】:2015-09-12 16:01:59
【问题描述】:
我有 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>
【问题讨论】: