Вот что я нашел относительно использования context
:
1) Внутри Activity
себя, используйте this
для раздувания макетов и меню, зарегистрируйте контекстные меню, создайте экземпляры виджетов, запустите другие действия, создайте новое 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) Для прослушивателей и других типов классов Android (например, ContentObserver) используйте подстановку контекста, например:
mContext = this; // Example 1
mContext = context; // Example 2
где this
или context
является контекстом класса (Activity и т. д.).
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) Для тостов обычно используют getApplicationContext()
, но, где возможно, используют контекст, переданный из Activity, Service и т. Д.
Используйте контекст приложения:
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.
ОБНОВЛЕНИЕ: Добавьте примеры Context
использования.