İşte kullanımı ile ilgili bulduğum context
:
1). Activity
Kendi içinde , this
mizanpajları ve menüleri şişirmek, bağlam menülerini kaydetmek, widget'ları başlatmak, diğer etkinlikleri başlatmak, Intent
bir içinde yeni oluşturmak Activity
, bir tercihleri başlatmak veya bir başka yöntemde kullanılabilir Activity
.
Şişirme düzeni:
View mView = this.getLayoutInflater().inflate(R.layout.myLayout, myViewGroup);
Şişirme menüsü:
@Override
public boolean onCreateOptionsMenu(Menu menu) {
super.onCreateOptionsMenu(menu);
this.getMenuInflater().inflate(R.menu.mymenu, menu);
return true;
}
Bağlam menüsünü kaydet:
this.registerForContextMenu(myView);
Örnek widget'ı:
TextView myTextView = (TextView) this.findViewById(R.id.myTextView);
Başlayın Activity
:
Intent mIntent = new Intent(this, MyActivity.class);
this.startActivity(mIntent);
Örnek tercihler:
SharedPreferences mSharedPreferences = this.getPreferenceManager().getSharedPreferences();
2). Uygulama geneli sınıf getApplicationContext()
için, uygulamanın ömrü boyunca bu bağlam mevcut olduğundan kullanın .
Mevcut Android paketinin adını alın:
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;
}
}
Uygulama genelinde bir sınıfı bağlama:
Intent mIntent = new Intent(this, MyPersistent.class);
MyServiceConnection mServiceConnection = new MyServiceConnection();
if (mServiceConnection != null) {
getApplicationContext().bindService(mIntent, mServiceConnection, Context.BIND_AUTO_CREATE);
}
3). Dinleyiciler ve diğer Android sınıfları (ör. ContentObserver) için aşağıdaki gibi bir Bağlam değiştirme kullanın:
mContext = this; // Example 1
mContext = context; // Example 2
nerede this
veya context
bir sınıfın bağlamıdır (Etkinlik vb.).
Activity
bağlam ikamesi:
public class MyActivity extends Activity {
private Context mContext;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
mContext = this;
}
}
Dinleyici içeriği ikamesi:
public class MyLocationListener implements LocationListener {
private Context mContext;
public MyLocationListener(Context context) {
mContext = context;
}
}
ContentObserver
bağlam ikamesi:
public class MyContentObserver extends ContentObserver {
private Context mContext;
public MyContentObserver(Handler handler, Context context) {
super(handler);
mContext = context;
}
}
4). İçin BroadcastReceiver
(inlined / gömülü alıcısı dahil), alıcının kendi bağlamı kullanın.
Dış 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);
}
}
}
Eğik / Gömülü 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). Hizmetler için, hizmetin kendi bağlamını kullanın.
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). Tostlar için genellikle getApplicationContext()
bir Faaliyet, Hizmet vb.
Uygulamanın bağlamını kullanın:
Toast mToast = Toast.makeText(getApplicationContext(), message, Toast.LENGTH_LONG);
mToast.show();
Bir kaynaktan aktarılan içeriği kullan:
public static void showLongToast(Context context, String message) {
if (context != null && message != null) {
Toast mToast = Toast.makeText(context, message, Toast.LENGTH_LONG);
mToast.show();
}
}
Ve son olarak, getBaseContext()
Android'in çerçeve geliştiricilerinin önerdiği şekilde kullanmayın .
GÜNCELLEME:Context
Kullanım örnekleri ekleyin .