開始寫 Android 程式
Android簡介使用方法開發工具開始寫程式視覺化介面視覺元件對話元件核心物件事件處理資料儲存查詢功能影音功能繪圖功能網路功能衛星地圖特殊功能資源管理裝置管理系統核心問題與回答刷機升級常用軟體Eclipse教學錄影訊息相關網站參考文獻最新修改簡體版English |
專案下載:HelloAndroid.zip 課堂錄影資料夾:D:\ccc100\Android\HelloAndroid 的內容以下顯示整個 Android 專案資料夾的結構,以及所有檔案列表。
檔案:src/ccc.android/HelloAndroidActivity.javaHelloAndroidActivity.java 是整個專案中的主程式。 package ccc.android; import android.app.Activity; import android.os.Bundle; public class HelloAndroidActivity extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); } } 檔案:res/layout/main.xmlmain.xml 是整個專案的使用者介面,Android 的使用者介面設計方式採用 XML 格式設計介面的結構。 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" > <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/hello" /> </LinearLayout> 檔案:gen/ccc.android/R.javaR.java 是 Android SDK 根據 main.xml 自動產生出來的檔案,用來定位並取得對應的資源,這種 gen/ 資料夾下的程式,千萬不能修改。 /* AUTO-GENERATED FILE. DO NOT MODIFY. * * This class was automatically generated by the * aapt tool from the resource data it found. It * should not be modified by hand. */ package ccc.android; public final class R { public static final class attr { } public static final class drawable { public static final int icon=0x7f020000; } public static final class layout { public static final int main=0x7f030000; } public static final class string { public static final int app_name=0x7f040001; public static final int hello=0x7f040000; } } 檔案:res/AndroidManifest.xmlAndroidManifest.xml 是整個 Android 專案的專案管理建置檔,其用途有點像 gcc 工具中的 Makefile 檔案,但結構卻也是用 XML 描述的。 <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="ccc.android" 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=".HelloAndroidActivity" 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> 檔案:res/default.propertiesdefault.properties 是預設屬性檔,目前只儲存了版本的相關資訊為 android-8,也就是 2.2 版。
檔案:res/progard.cfgProguard 是用來對 Java 程式進行擾亂性編碼,以避免被人用還原工程解出原始碼的一種工具。 progard.cfg 儲存了擾亂性編碼工具的相關設定。
執行結果: |
page revision: 13, last edited: 13 Oct 2011 03:07
Post preview:
Close preview