นี่คือสิ่งที่ฉันได้พบเกี่ยวกับการใช้context
:
1) ภายในActivity
ตัวเองใช้this
สำหรับพองรูปแบบและเมนูลงทะเบียนเมนูบริบท instantiating เครื่องมือเริ่มต้นกิจกรรมอื่น ๆ ที่สร้างใหม่Intent
ภายในActivity
, อินสแตนซ์ตั้งค่าหรือวิธีการอื่น ๆ Activity
ที่มีอยู่ใน
เค้าโครงพองตัว:
View mView = this.getLayoutInflater().inflate(R.layout.myLayout, myViewGroup);
เมนูขยาย:
@Override
public boolean onCreateOptionsMenu(Menu menu) {
super.onCreateOptionsMenu(menu);
this.getMenuInflater().inflate(R.menu.mymenu, menu);
return true;
}
ลงทะเบียนเมนูบริบท:
this.registerForContextMenu(myView);
วิดเจ็ตอินสแตนซ์:
TextView myTextView = (TextView) this.findViewById(R.id.myTextView);
เริ่ม Activity
:
Intent mIntent = new Intent(this, MyActivity.class);
this.startActivity(mIntent);
การตั้งค่าอินสแตนซ์:
SharedPreferences mSharedPreferences = this.getPreferenceManager().getSharedPreferences();
2)สำหรับคลาสทั้งแอปพลิเคชันให้ใช้getApplicationContext()
ตามบริบทนี้สำหรับอายุแอปพลิเคชัน
ดึงชื่อของแพ็คเกจ Android ปัจจุบัน:
public class MyApplication extends Application {
public static String getPackageName() {
String packageName = null;
try {
PackageInfo mPackageInfo = getApplicationContext().getPackageManager().getPackageInfo(getApplicationContext().getPackageName(), 0);
packageName = mPackageInfo.packageName;
} catch (NameNotFoundException e) {
// Log error here.
}
return packageName;
}
}
ผูกคลาสทั่วทั้งแอปพลิเคชัน:
Intent mIntent = new Intent(this, MyPersistent.class);
MyServiceConnection mServiceConnection = new MyServiceConnection();
if (mServiceConnection != null) {
getApplicationContext().bindService(mIntent, mServiceConnection, Context.BIND_AUTO_CREATE);
}
3)สำหรับ Listeners และคลาส Android อื่น ๆ (เช่น ContentObserver) ให้ใช้การทดแทนบริบทเช่น:
mContext = this; // Example 1
mContext = context; // Example 2
ที่ไหน this
หรือcontext
เป็นบริบทของชั้นเรียน (กิจกรรม ฯลฯ )
Activity
การทดแทนบริบท:
public class MyActivity extends Activity {
private Context mContext;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
mContext = this;
}
}
การทดแทนบริบทผู้ฟัง:
public class MyLocationListener implements LocationListener {
private Context mContext;
public MyLocationListener(Context context) {
mContext = context;
}
}
ContentObserver
การทดแทนบริบท:
public class MyContentObserver extends ContentObserver {
private Context mContext;
public MyContentObserver(Handler handler, Context context) {
super(handler);
mContext = context;
}
}
4)สำหรับBroadcastReceiver
(รวมถึงผู้รับแบบอินไลน์ / ฝังตัว) ให้ใช้บริบทของผู้รับเอง
ภายนอกBroadcastReceiver
:
public class MyBroadcastReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
final String action = intent.getAction();
if (action.equals(Intent.ACTION_SCREEN_OFF)) {
sendReceiverAction(context, true);
}
private static void sendReceiverAction(Context context, boolean state) {
Intent mIntent = new Intent(context.getClass().getName() + "." + context.getString(R.string.receiver_action));
mIntent.putExtra("extra", state);
context.sendBroadcast(mIntent, null);
}
}
}
ที่ฝัง / ฝังBroadcastReceiver
:
public class MyActivity extends Activity {
private BroadcastReceiver mBroadcastReceiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
final boolean connected = intent.getBooleanExtra(context.getString(R.string.connected), false);
if (connected) {
// Do something.
}
}
};
}
5) สำหรับบริการใช้บริบทของบริการ
public class MyService extends Service {
private BroadcastReceiver mBroadcastReceiver;
@Override
public void onCreate() {
super.onCreate();
registerReceiver();
}
private void registerReceiver() {
IntentFilter mIntentFilter = new IntentFilter();
mIntentFilter.addAction(Intent.ACTION_SCREEN_OFF);
this.mBroadcastReceiver = new MyBroadcastReceiver();
this.registerReceiver(this.mBroadcastReceiver, mIntentFilter);
}
}
6)สำหรับ Toasts โดยทั่วไปใช้getApplicationContext()
แต่เป็นไปได้ใช้บริบทที่ส่งผ่านจากกิจกรรมบริการ ฯลฯ
ใช้บริบทของแอปพลิเคชัน:
Toast mToast = Toast.makeText(getApplicationContext(), message, Toast.LENGTH_LONG);
mToast.show();
ใช้บริบทที่ส่งจากแหล่งข้อมูล:
public static void showLongToast(Context context, String message) {
if (context != null && message != null) {
Toast mToast = Toast.makeText(context, message, Toast.LENGTH_LONG);
mToast.show();
}
}
และสุดท้ายอย่าใช้ getBaseContext()
ตามคำแนะนำของนักพัฒนาเฟรมเวิร์กของ Android
UPDATE:เพิ่มตัวอย่างContext
การใช้งาน