所以我开始潜入 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>