สิ่งนี้จะทำให้คุณเข้าถึงได้applicationContext
จากทุกที่ช่วยให้คุณapplicationContext
สามารถใช้งานได้ทุกที่ Toast
, getString()
, sharedPreferences
ฯลฯ
The Singleton:
package com.domain.packagename;
import android.content.Context;
/**
* Created by Versa on 10.09.15.
*/
public class ApplicationContextSingleton {
private static PrefsContextSingleton mInstance;
private Context context;
public static ApplicationContextSingleton getInstance() {
if (mInstance == null) mInstance = getSync();
return mInstance;
}
private static synchronized ApplicationContextSingleton getSync() {
if (mInstance == null) mInstance = new PrefsContextSingleton();
return mInstance;
}
public void initialize(Context context) {
this.context = context;
}
public Context getApplicationContext() {
return context;
}
}
เริ่มต้น Singleton ในApplication
คลาสย่อยของคุณ:
package com.domain.packagename;
import android.app.Application;
/**
* Created by Versa on 25.08.15.
*/
public class mApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
ApplicationContextSingleton.getInstance().initialize(this);
}
}
หากฉันไม่ผิดมันจะช่วยให้คุณเชื่อมต่อกับแอปพลิเคชันได้ทุกที่เรียกใช้ด้วยApplicationContextSingleton.getInstance.getApplicationContext();
คุณไม่จำเป็นต้องล้างข้อมูล ณ จุดใด ๆ เช่นเมื่อปิดแอปพลิเคชัน
อย่าลืมอัปเดตAndroidManifest.xml
เพื่อใช้Application
คลาสย่อยนี้:
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.domain.packagename"
>
<application
android:allowBackup="true"
android:name=".mApplication" <!-- This is the important line -->
android:label="@string/app_name"
android:theme="@style/AppTheme"
android:icon="@drawable/app_icon"
>
โปรดแจ้งให้เราทราบหากคุณเห็นสิ่งผิดปกติที่นี่ขอบคุณ :)