Ecco cosa ho trovato sull'uso di context
:
1). All'interno di un Activity
sé, l'uso this
per gonfiare i layout ei menu, registrare i menu contestuali, istanziare i widget, avviare altre attività, creare nuovi Intent
all'interno di una Activity
, le preferenze istanziazione, o altri metodi disponibili in un Activity
.
Gonfia layout:
View mView = this.getLayoutInflater().inflate(R.layout.myLayout, myViewGroup);
Gonfia menu:
@Override
public boolean onCreateOptionsMenu(Menu menu) {
super.onCreateOptionsMenu(menu);
this.getMenuInflater().inflate(R.menu.mymenu, menu);
return true;
}
Registra il menu contestuale:
this.registerForContextMenu(myView);
Widget di istanza:
TextView myTextView = (TextView) this.findViewById(R.id.myTextView);
Inizia un Activity
:
Intent mIntent = new Intent(this, MyActivity.class);
this.startActivity(mIntent);
Preferenze di istanza:
SharedPreferences mSharedPreferences = this.getPreferenceManager().getSharedPreferences();
2). Per la classe a livello di applicazione, utilizzare getApplicationContext()
poiché questo contesto esiste per la durata dell'applicazione.
Recupera il nome dell'attuale pacchetto 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;
}
}
Associare una classe a livello di applicazione:
Intent mIntent = new Intent(this, MyPersistent.class);
MyServiceConnection mServiceConnection = new MyServiceConnection();
if (mServiceConnection != null) {
getApplicationContext().bindService(mIntent, mServiceConnection, Context.BIND_AUTO_CREATE);
}
3). Per gli ascoltatori e altri tipi di lezioni Android (ad es. ContentObserver), utilizzare una sostituzione di contesto come:
mContext = this; // Example 1
mContext = context; // Example 2
dove this
o context
è il contesto di una classe (attività, ecc.).
Activity
sostituzione del contesto:
public class MyActivity extends Activity {
private Context mContext;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
mContext = this;
}
}
Sostituzione del contesto dell'ascoltatore:
public class MyLocationListener implements LocationListener {
private Context mContext;
public MyLocationListener(Context context) {
mContext = context;
}
}
ContentObserver
sostituzione del contesto:
public class MyContentObserver extends ContentObserver {
private Context mContext;
public MyContentObserver(Handler handler, Context context) {
super(handler);
mContext = context;
}
}
4). Per BroadcastReceiver
(incluso il ricevitore incorporato / incorporato), utilizzare il proprio contesto del destinatario.
Esterno 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);
}
}
}
Inline / Embedded 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). Per i Servizi, utilizzare il proprio contesto del servizio.
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). Per i toast, usa generalmente getApplicationContext()
, ma dove possibile, usa il contesto passato da un'attività, un servizio, ecc.
Usa il contesto dell'applicazione:
Toast mToast = Toast.makeText(getApplicationContext(), message, Toast.LENGTH_LONG);
mToast.show();
Usa contesto passato da una fonte:
public static void showLongToast(Context context, String message) {
if (context != null && message != null) {
Toast mToast = Toast.makeText(context, message, Toast.LENGTH_LONG);
mToast.show();
}
}
E infine, non utilizzare getBaseContext()
come consigliato dagli sviluppatori del framework Android.
AGGIORNAMENTO: aggiungi esempi di Context
utilizzo.