活動
活動是完整的螢幕。UI 是基於 XML 的
package com.example.android.activity;
import android.os.Bundle;
import android.app.Activity;
public class MainActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}
注意活動必須在使用前在 AndroidManifest.xml
中宣告。
例如:
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
每個活動都有 xml
格式的佈局檔案,我們使用 Activity 類的 setContentView 方法包含它的佈局。例如 setContentView(R.layout.activity_main)
佈局檔案示例
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_dashboard"
android:layout_width="match_parent"
android:layout_height="match_parent">
//Add other views here
</LinearLayout>