我只是安卓应用开发的大佬。我正在尝试使用以下代码在线性布局中创建一个可编辑的文本区域:
<LinearLayout 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"
android:orientation="horizontal"
tools:context=".MainActivity" >
<EditText andriod:id="@+id/edit_message"
andriod:layout_width="wrap_content"
android:layout_height="wrap_content"
andriod:hint="@Srting/edit_message">
</EditText>
</LinearLayout>
但是当保存 xml 代码时,它会给出错误。