だから私は Android の世界に飛び込み始めgetting started
、ここから公式ガイドに従おうとしていました: building-ui。チュートリアルは十分に単純に見えますが、物事が完全に一致しないという問題に直面しています。
例えば:
- チュートリアルでは、デフォルトで作成される layout/main.xml ファイルがあると彼らは言います。このファイルを取得せず、代わりに、layout/my_first_activity.xml を取得します。これらのファイルの内容も異なります。
どうしてこれなの?私は何を間違っていますか?ドキュメントは古いですか?(私は を使用してEclipse Juno
おり、 を使用していますAndroid 2.3 SDK
)。正確にフォーマット (チュートリアルからコードをコピー) しようとしましたが、アプリを実行しようとするとエラーが発生します。
--
チュートリアルでは、main.xml ファイルは次のようになっています。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal" >
</LinearLayout>
.
.
.
私の my_first_activity.xml は次のようになります。
<RelativeLayout 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" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:padding="@dimen/padding_medium"
android:text="@string/hello_world"
tools:context=".MyFirstActivity" />
</RelativeLayout>