系出名門Android(1) – 在 Windows 下搭建 Android 開發環境,以及 Hello World 程式

來源:互聯網
上載者:User
[索引頁]
[源碼下載]

系出名門Android(1) - 在 Windows 下搭建 Android 開發環境,以及 Hello World 程式

作者:webabcd

介紹
搭建 Android 的開發環境,以及寫一個簡單的樣本程式 

  • 在 Windows 下搭建 Android 開發環境  
  • Android 項目的目錄結構說明
  • 寫一個簡單的 Hello World 程式  

一、在 Windows 下搭建 Android 開發環境
1、安裝 JDK (Java Development Kit)
http://download.java.net/jdk6/

2、安裝 Android SDK
http://developer.android.com/sdk

3、安裝 Eclipse
http://www.eclipse.org/

4、開啟 Eclipse ,並安裝其 Android 外掛程式(ADT)
開啟菜單 "Help" -> "Install New Software",在 "Availabe Software" 中加入地址 http://dl-ssl.google.com/android/eclipse/ ,然後安裝 ADT(Android Development Tools)

5、建立 Android 項目
"New" -> Android Project,Project Name - 項目名稱;Build Target - 編譯項目的 SDK 版本;Application name - 程式名稱;Package name - 包名;Min SDK Version - 程式所支援的最低 SDK 版本代號(2 對應 1.1,3 對應 1.5,4 對應 1.6)

6、運行 Android 項目
開啟菜單 "Run" -> "Run Configurations" -> New launch configuration,設定啟動項目名稱,在 Android 選項卡中選擇啟動項目,在 Target 選項卡中設定模擬器

7、建立/使用類比 SD 記憶卡
建立 SD 記憶卡,運行類似如下命令:mksdcard -l sdcard 512M d:\android\sdcard.img
模擬器中使用 SD 記憶卡,在項目配置的 Target 選項卡的 "Additional Emulator Command Line Options" 框中輸入類似如下參數:-sdcard d:\android\sdcard.img

8、配置模擬器
運行類似如下命令:android create avd --name android15 --target 2。或者直接在菜單 "Window" -> "Android AVD Manager" 中配置模擬器

9、瀏覽類比 SD 記憶卡中的內容
偵錯工具,在 DDMS 中選擇 "File Explorer" ,在其中的 sdcard 目錄下就是類比 SD 記憶卡中的內容

10、查看日誌 LogCat
Window -> Show View -> Other -> Android -> LogCat

11、在模擬器中安裝/卸載 apk
安裝 apk 運行類似如下命令:adb install name.apk;卸載 apk 運行類似如下命令:adb uninstall packagename(註:這裡的參數是需要卸載的包名)

12、反編譯 Android 程式
解壓 apk 檔案,取出其中的 classes.dex 檔案,運行類似如下命令:dexdump.exe -d classes.dex > dump.txt(其意思是將 classes.dex dump 出來,並將反編譯後的代碼儲存到指定的文字檔中)

13、人品不好是出現的某些錯誤的解決辦法
如果出現類似如下的錯誤等
no classfiles specified
Conversion to Dalvik format failed with error 1
解決辦法:Project -> Clean
出現 Android SDK Content Loader 60% (一直卡在 60%)
解決辦法:Project -> 去掉 Build Automatically 前面的勾

14、查看 SDK 原始碼
先想辦法搞到原始碼,如這個地址 http://www.digginmobile.com/android.asp ,然後將其解壓到 SDK 根路徑下的 sources 檔案夾內即可

二、Android 項目的目錄結構
1、src - 用於放置來源程式
2、gen - 自動產生 R.java 檔案,用於引用資源檔(即 res 目錄下的資料)
3、assets - 用於放置原始檔案,Android 不會對此目錄下的檔案做任何處理,這是其與 res 目錄不同的地方
4、res/drawable - 用於放置圖片之類的資源;res/layout - 用於放置布局用的 xml 檔案;res/values - 用於放置一些常量資料
5、AndroidManifest.xml - Android 程式的資訊清單檔,相當於設定檔,配置應用程式名稱、表徵圖、Activity、Service、Receiver等

三、Hello World 程式
1、res/layout/main.xml

代碼

<?xml version="1.0" encoding="utf-8"?>
<!--
設定 ID 的方式:ID前加首碼,@+id/
引用資源檔內字串資源的方式:指定的資源名稱前加首碼,@string/
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:id="@+id/layout"
    >
<TextView  
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="@string/hello"
    />
<TextView  
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:id="@+id/txt"
    />
</LinearLayout>

2、res/values/strings.xml

代碼

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="hello">layout 直接調用 values 中的字串</string>
    <string name="hello2">編程方式調用 values 中的字串</string>
    <string name="app_name">webabcd_hello</string>
</resources>

3、res/drawable 目錄下放置一個名為 icon.png 的圖片檔案

4、AndroidManifest.xml

代碼

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.webabcd.hello"
      android:versionCode="1"
      android:versionName="1.0">
    <application android:icon="@drawable/icon" android:label="@string/app_name">
        <activity android:name=".Main"
                  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>
    <uses-sdk android:minSdkVersion="3" />
</manifest> 

5、Main.java

代碼

package com.webabcd.hello;

import android.app.Activity;
import android.os.Bundle;
import android.widget.LinearLayout;
import android.widget.TextView;

public class Main extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        
        // 將指定的布局檔案作為 Activity 所顯示的內容
        setContentView(R.layout.main);
        
        // 動態地在指定的容器控制項上添加新的控制項
        TextView txt = new TextView(this);
        txt.setText("動態添加控制項");
        // setContentView(txt);
        ((LinearLayout)this.findViewById(R.id.layout)).addView(txt);
        
        // 引用資源檔內的內容作為輸出內容
        TextView txt1 = (TextView)this.findViewById(R.id.txt);
        txt1.setText(this.getString(R.string.hello2));
    }
}

OK
[源碼下載]

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.