天天看點

android application

Application 配置全局Context

第一步、寫一個全局的單例模式的MyApplication繼承自Application 覆寫onCreate ,在這個方法裡面執行個體化Application

第二步、配置全局的Context

<application android:name="com.appstore.service.MyApplication" ></application>

第三步、使用,使用的時候用的時候根據類的名稱通路Context

Android程式的入口點

很多初入Android開發的網頁可能不知道Android程式的入口點是什麼,不是main()嗎,當然Android123也保證國内知道的不 到1%,很多網友可能直接回複是onCreate,當然我相信回複onCreate的在字面上不算錯,但是你們想的是Activity中的 onCreate方法吧,這裡Android開發網告訴下大家真正的入口點entrypoint是什麼。

Android使用Google Dalvik VM,相對于傳統Java VM而言有着很大的不同,在Sun的Java體系中入口點和标準c語言 一樣是main(),而每個Android程式都包含着一個Application執行個體,一個Application執行個體中有多個Activity、 Service、ContentProvider或Broadcast Receiver。因為大部分的應用都包含Activity是以,說很多網友認為 是Activity的onCreate,但是你沒有發現你的工程中有多個Activity嗎? 你可能沒有見過沒有Activity的Android應用 吧。

其實在android.app.Application這個包的onCreate才是真正的Android入口點,隻不過大多數開發者無需重寫該類,他的繼承關系如下圖:

java.lang.Object

? android.content.Context

? android.content.ContextWrapper

? android.app.Application

android.app.Application類包含了4個公開的方法

void  onConfigurationChanged(Configuration newConfig)

void  onCreate()  //這裡才是真正的入口點。

void  onLowMemory()

void  onTerminate()

是以希望大家,記住真正的Android入口點是application的main,你可以看下androidmanifest.xml的包含關系就清楚了,并不是每個應用都必須有Activity的。

android中application 關于全局變量

android程式設計中,application這樣的名詞似乎變得那樣的不常見,而讓大家更為熟悉的是activity、intent、provider、broadcast和service。但其實android中的application也有着它自身的用處。

打開manifest檔案,會看到有一個application配置标簽,這就是有關application的使用了。那究竟application有什麼用處呢?來看看SDK中是如何描述的:

Base class for those who need to maintain global application state. You can provide your own implementation by specifying its name in your AndroidManifest.xml's < application> tag, which will cause that class to be instantiated for you when the process for your application/package is created.

就是說application是用來儲存全局變量的,并且是在package建立的時候就跟着存在了。是以當我們需要建立全局變量的時候,不需要再 像 j2se那樣需要建立public權限的static變量,而直接在application中去實作。隻需要調用Context 的 getApplicationContext或者Activity的getApplication方法來獲得一個application對象,再做出 相應的處理。

因小工程中涉及到的檔案比較多,這裡就貼代碼撒。

application檔案:

Java代碼:

public class TestApplication extends Application {

private int curIndex;

public int getCurIndex() {

return curIndex;

}

public void setCurIndex(int curIndex) {

this.curIndex = curIndex;

@Override

public void onCreate() {

super.onCreate();

public void onTerminate() {

super.onTerminate();

application中有一個curIndex和setter getter方法。

第一個acitivty中對application進行的操作:

Java代碼:

TestApplication application = (TestApplication) this.getApplication();

Log.i("data", ""+application.getCurIndex());

application.setCurIndex(5);

第二個Activity:

TestApplication application = (TestApplication)this.getApplication();

application.setCurIndex(6);

第三個Activity:

Java代碼

final TestApplication application = (TestApplication) this.getApplication();

在運作過程中,每一次都kill掉對應的Activity,再進入下一個Activity。