0

我只是安卓应用开发的大佬。我正在尝试使用以下代码在线性布局中创建一个可编辑的文本区域:

 <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 代码时,它会给出错误。

4

1 回答 1

0

<EditText andriod:id="@+id/edit_message" andriod:layout_width="wrap_content"
android:layout_height="wrap_content" andriod:hint="@Srting/edit_message"> </EditText>

Srting 应该是字符串

于 2013-11-15T12:39:25.263 回答