到Google 搜尋網站,輸入 eclipse,第一位是 Eclipse - The Eclipse Foundation open source community website,點選下面的 Downloads, 點選 Eclipse IDE for Java Developers (128 MB), 下載 eclipse-java-indigo-SR1-win32.zip,然後把 zip 檔案解壓到一個資料夾,不用安裝,只需雙擊 eclipse.exe直接執行即可。第一次執行需要建立 workspace, 請選擇自己喜歡的位置,跟著到 Help -> Install New Software, 安裝 Android plugin 到eclipse,在 work with: 右邊有一個"Add" 按鈕,點此按鈕跳出 "Add Repository" 視窗,在 location 一欄輸入 https://dl-ssl.google.com/android/eclipse/,在 Name 一欄隨便輸入一個名字,點選 Developer Tools, 然後點Next 繼續,此時程式會到網頁下載檔案,直至見到 Finish 按鈕按一去便完成plugin 安裝,此時Eclipse 會要求重新啟動,重啟後選擇 Use existing SDKS, 位置 C:\Program Files (x86)\Android\android-sdk,跟著到 Window -> AVD Manager,點擊Add, 在 Name 欄隨便輸入名字如 SimulateDevice, Target 欄選 Android 2.3.3 , 然後按 "Create AVD"
(3) 開發第一個程式 App: Hello World
File -> New -> Other -> Android project, 按 Next
輸入Project name , 例如 Helloworld, 按 Next
選擇 Android2.3.3, 按 Next
在Package name 輸入名字如 sample.helloworld,按Finish
public class HelloworldActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
}
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="hello2">Hello, Android! I am a string resource!</string> // hello2 為變數名字
<string name="app_name">My first application</string>
</resources>