0

私は、android アプリ開発のビギナーです。次のコードを使用して、線形レイアウトで編集可能なテキスト領域を作成しようとしています:

 <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