Aqui está o que eu encontrei sobre o uso de context
:
1) No Activity
próprio, use this
para aumentar layouts e menus, registrar menus de contexto, instanciar widgets, iniciar outras atividades, criar novo Intent
dentro de um Activity
, instanciar preferências ou outros métodos disponíveis no Activity
.
Inflar layout:
View mView = this.getLayoutInflater().inflate(R.layout.myLayout, myViewGroup);
Inflar menu:
@Override
public boolean onCreateOptionsMenu(Menu menu) {
super.onCreateOptionsMenu(menu);
this.getMenuInflater().inflate(R.menu.mymenu, menu);
return true;
}
Registrar menu de contexto:
this.registerForContextMenu(myView);
Instanciar widget:
TextView myTextView = (TextView) this.findViewById(R.id.myTextView);
Iniciar um Activity
:
Intent mIntent = new Intent(this, MyActivity.class);
this.startActivity(mIntent);
Instanciar preferências:
SharedPreferences mSharedPreferences = this.getPreferenceManager().getSharedPreferences();
2) Para a classe de todo o aplicativo, use getApplicationContext()
como este contexto existe para a vida útil do aplicativo.
Recupere o nome do pacote Android atual:
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;
}
}
Vincule uma classe para todo o aplicativo:
Intent mIntent = new Intent(this, MyPersistent.class);
MyServiceConnection mServiceConnection = new MyServiceConnection();
if (mServiceConnection != null) {
getApplicationContext().bindService(mIntent, mServiceConnection, Context.BIND_AUTO_CREATE);
}
3) Para ouvintes e outros tipos de classes do Android (por exemplo, ContentObserver), use uma substituição de contexto como:
mContext = this; // Example 1
mContext = context; // Example 2
onde this
ou context
é o contexto de uma classe (atividade etc.).
Activity
substituição de contexto:
public class MyActivity extends Activity {
private Context mContext;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
mContext = this;
}
}
Substituição de contexto do ouvinte:
public class MyLocationListener implements LocationListener {
private Context mContext;
public MyLocationListener(Context context) {
mContext = context;
}
}
ContentObserver
substituição de contexto:
public class MyContentObserver extends ContentObserver {
private Context mContext;
public MyContentObserver(Handler handler, Context context) {
super(handler);
mContext = context;
}
}
4) Para BroadcastReceiver
(incluindo receptor embutido / embutido), use o próprio contexto do receptor.
Externo 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 / Incorporado 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) Para Serviços, use o próprio contexto do serviço.
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) Para brindes, use geralmente getApplicationContext()
, mas sempre que possível, use o contexto transmitido de uma atividade, serviço etc.
Use o contexto do aplicativo:
Toast mToast = Toast.makeText(getApplicationContext(), message, Toast.LENGTH_LONG);
mToast.show();
Use o contexto passado de uma 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 por último, não use getBaseContext()
como recomendado pelos desenvolvedores de estrutura do Android.
ATUALIZAÇÃO: adicione exemplos de Context
uso.