0

このファイルをコンパイルすると、次のエラー エラーが発生しました: XML 解析エラー: 整形式ではありません (無効なトークン) R を変数に解決できません

これはアンドロイド xml ファイルです

<?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="wrap_content"
        android:layout_height="wrap_content"
         android:orientation="vertical"
         android:background="@drawable/ic_launcher"
        <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world"
        />
      <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="this is main text"
        android:gravity="center"
        />
     <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/title"
        />

     <Button
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:text="Tutorials"
         android:textSize="25px"
         android:textStyle="bold" />

/>
4

1 に答える 1

0

ファイルの代わりに以下の XML ファイルを使用してください。

<?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="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:background="@drawable/ic_launcher">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" />

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="this is main text"
        android:gravity="center" />

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/title" />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Tutorials"
        android:textSize="25px"
        android:textStyle="bold" />

</LinearLayout>
于 2012-08-25T06:01:52.730 に答える