Android關於context上下文定義全域性的,轉載一個大神的
阿新 • • 發佈:2019-02-15
大家好,今天給大家分享一下Android裡的Context的一些用法,以前經常有人在群裡問我比如我在一個工具類裡的某個方法,或者View裡需要呼叫Context.但是工具類還有View裡沒有這個上下文怎麼辦?為了解決大家的疑問,為了解決大家的疑問,我今天寫一個簡單的Demo.讓大家如何學好自如的用Context.想什麼時候有Context,什麼時候就有Context.
這裡大致可以分為兩種:一是傳遞Context引數,二是呼叫全域性的Context.
其實我們應用啟動的時候會啟動Application這個類,這個類是在AndroidManifest.xml檔案裡其實是預設的
-
<application
- android:icon="@drawable/ic_launcher"
- android:label="@string/app_name"
- >
- <activity
- android:name=".ApplicationDemoActivity"
- android:label="@string/app_name" >
- <intent-filter>
-
<action android:name="android.intent.action.MAIN"
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- </application>
這個Application類是單例的,也就是說我們可以自己寫個Application(比如名為:MainApplication)類,來代替預設的Applicaiton,這個類可以儲存應用的全域性變數,我們可以定義一個全域性的Context.供外部呼叫.用法如下:
- package com.tutor.application;
- import android.app.Application;
- import android.content.Context;
- publicclass MainApplication extends Application {
- /**
- * 全域性的上下文.
- */
- privatestatic Context mContext;
- @Override
- publicvoid onCreate() {
- super.onCreate();
- mContext = getApplicationContext();
- }
- /**獲取Context.
- * @return
- */
- publicstatic Context getContext(){
- return mContext;
- }
- @Override
- publicvoid onLowMemory() {
- super.onLowMemory();
- }
- }
我們需要在AndroidMainifest.xml把MainApplication註冊進去(第10行程式碼):
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.tutor.application"
- android:versionCode="1"
- android:versionName="1.0" >
- <application
- android:icon="@drawable/ic_launcher"
- android:label="@string/app_name"
- android:name=".MainApplication" >
- <activity
- android:name=".ApplicationDemoActivity"
- android:label="@string/app_name" >
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- </application>
- </manifest>
為了讓大家更容易理解,寫了一個簡單的Demo.步驟如下:
第一步:新建一個Android工程ApplicationDemo,目錄結構如下:
第二步:新建MainApplication.java,程式碼和上面一樣我就不貼了.
第三步:新建一個工具類ToolsUtil.java,程式碼如下
- package com.tutor.application;
- import android.content.Context;
- import android.widget.Toast;
- /**
- * @author frankiewei.
- * 應用的一些工具類.
- */
- publicclass ToolUtils {
- /**
- * 引數帶Context.
- * @param context
- * @param msg
- */
- publicstaticvoid showToast(Context context,String msg){
- Toast.makeText(context, msg, Toast.LENGTH_SHORT).show();
- }
- /**
- * 呼叫全域性的Context.
- * @param msg
- */
- publicstaticvoid showToast(String msg){
- Toast.makeText(MainApplication.getContext(), msg, Toast.LENGTH_SHORT).show();
- }
- }
第四步:新建一個View命名為MainView.java就是我們Activity現實的View.程式碼如下:
- package com.tutor.application;
- import android.app.Activity;
- import android.content.Context;
- import android.util.AttributeSet;
- import android.view.LayoutInflater;
- import android.view.View;
- import android.widget.Button;
- import android.widget.FrameLayout;
- /**
- * @author frankiewei.
- * 自定義的MainView.
- */
- publicclass MainView extends FrameLayout implements View.OnClickListener{
- private Context mContext;
- private Activity mActivity;
- /**
- * 引數Button.
- */
- private Button mArgButton;
- /**
- * 全域性Button.
- */
- private Button mGlobleButton;
- /**
- * 退出Button.
- */
- private Button mExitButton;
- public MainView(Context context){
- super(context);
- setupViews();
- }
- public MainView(Context context, AttributeSet attrs) {
- super(context, attrs);
- setupViews();
- }
- privatevoid setupViews(){
- //獲取View的上下文.
- mContext = getContext();
- //這裡將Context轉換為Activity.
- mActivity = (Activity)mContext;
- LayoutInflater inflater = LayoutInflater.from(mContext);
- View v = inflater.inflate(R.layout.main, null);
- addView(v);
- mArgButton = (Button)v.findViewById(R.id.arg_button);
- mGlobleButton = (Button)v.findViewById(R.id.glo_button);
- mExitButton = (Button)v.findViewById(R.id.exit_button);
- mArgButton.setOnClickListener(this);
- mGlobleButton.setOnClickListener(this);
- mExitButton.setOnClickListener(this);
- }
- publicvoid onClick(View v) {
- if(v == mArgButton){
- ToolUtils.showToast(mContext, "我是通過傳遞Context引數顯示的!");
- }elseif(v == mGlobleButton){
- ToolUtils.showToast("我是通過全域性Context顯示的!");
- }else{
- mActivity.finish();
- }
- }
- }
- <?xmlversion="1.0"encoding="utf-8"?>
- <LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:orientation="vertical">
- <TextView
- android:layout_width="fill_parent"