编写第一个Android程序 HelloWorld
1.创建Android虚拟设备(AVD)
在开始之前先创建一个Android虚拟设备。
Window->Android SDK and AVD Manager 点击New按钮。
1.在Name输入Android虚拟设备名字。如my_avd2.2
2.在Target选择将运行在虚拟设备上的SDK版本。如这里选择2.2
3.点击Create AVD完成。
2.创建一个工程
File > New > Project 展开Android,选择Android Project 点击下一步。
Project name: HelloAndroid
Application name: Hello, Android
Package name: com.example.helloandroid
Create Activity: HelloAndroid
Min SDK Version: 8
去掉Use default location前面的勾,选择自己的工程路径。
在Build Target选择我们想用的SDK版本。这里选择Android2.2
点击Finish。
3.AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.helloandroid"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="8" />
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".HelloAndroid"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
修改前的代码
package com.example.helloandroid;
import android.app.Activity;
import android.os.Bundle;
public class HelloAndroid extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
}
修改后的代码
package com.example.helloandroid;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
public class HelloAndroid extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
TextView tv = new TextView(this);
tv.setText("Hello Android");
setContentView(tv);
}
}
运行工程
Run->Run 选择Android Application
可以看到。