编译时我一直收到此错误:在'android'包中找不到属性'weight'的资源标识符。我怎样才能解决这个问题?代码:
<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"
>
<TextView
android:text="@string/enter_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<EditText
android:hint="@string/hint_one"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:weight="1"
/>
<EditText
android:hint="@string/hint_two"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:weight="1"
/>
<Button
android:text="@string/send_message"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
答案 0 :(得分:6)
这是android:layout_weight="1"