怎么分开plain text和textview?
我的都是连一起了,怎么都移不开
我的都是连一起了,怎么都移不开
2015-05-24
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="姓名" />
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight=""
android:text="填写数据" />
举报