1

Androidを使用してアプリケーションを開発する方法を学んでいます。

これは、単純なユーザーインターフェイスを構築し、エラーに直面する最初のレッスンです。ルート要素に続くドキュメントのマークアップは整形式である必要があります。

これがコードです

    <?xml version="1.0" encoding="utf-8"?>
    <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:orientatio="horizonatal"


    <EditText android:id="@+id/edit_message"
        android:layout_widthe="wrap_content"
        android:layout_height="wrap_content"
        android:hint="@string/edit_message">

        <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/button_send">
        />
</LinearLayout>

レッスンはhttp://developer.android.com/training/basics/firstapp/building-ui.htmlにあります

4

1 に答える 1

0

LinearLayout要素に閉じ角ブラケットがないように見えます。また、最終的な属性名と値にいくつかのタイプミスがあるようです。

試す:

<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">

EditText要素を閉じるのも忘れており、「width」にタイプミスがあります。試す:

<EditText android:id="@+id/edit_message"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:hint="@string/edit_message" />
于 2012-10-27T09:48:05.623 に答える