Anroid Studio IDE 打開後,左方有一行選單,其中有一選項為Project點選進去(通常開啟IDE後,會自動打開)從裡面可以清楚看到Android專案架構,分為:
接著我會分享組成專案架構的4種元素
<!--在一台手機裡,package為Android作業系統辨識安裝檔案APK的重要依據-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.myapplication">
<!--進入應用程式-->
<!--android:icon 點擊應用程式前,app外面的圖示-->
<!--android:label點擊應用程式前,app名稱-->
<!--android:theme app主題風格-->
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<!--主程式畫面-->
<!--控制主畫面的程式 .MainActivity-->
<!--.MainActivity前的"."視為package名稱=com.example.myapplication-->
<activity android:name=".MainActivity">
<intent-filter>
<!--android.intent.action.MAIN 主畫面-->
<action android:name="android.intent.action.MAIN" />
<!--android.intent.category.LAUNCHER 開發時APK完成安裝至手機會自動開啟畫面-->
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
//package com.example.myapplication 名稱
package com.example.myapplication;
//引入程式編寫的相關套件
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
//MainActivity 繼承 AppCompatActivity 類別
public class MainActivity extends AppCompatActivity {
//@Override在這裡為覆寫類別方法的指令,當我們要客製化程式時又不想破壞類別結構時,可以藉由此方法來達成
@Override
protected void onCreate(Bundle savedInstanceState) {
//super可以使用父類別相關成員函數
//個人見解:在此先由@Override覆寫onCreate方法後,又 super使用父類別之成員函數,達成繼承方法又能實作的功效
super.onCreate(savedInstanceState);
//設定顯示畫面由R(Resource)找到layout檔
setContentView(R.layout.activity_main);
}
}
res檔案內又分為:
apply plugin: 'com.android.application'
android {
// 編譯SDK版本
compileSdkVersion 29
// 工具版本
buildToolsVersion "29.0.1"
defaultConfig {
// 套件名稱
applicationId "com.example.myapplication"
// 最低SDK版本
minSdkVersion 15
// 目標版本
targetSdkVersion 29
// 版本編號
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
//相依函式庫
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}
若上面理解有誤,歡迎大家下方留言分享,謝謝大家~
Thank you for your time.