談談Android裡的Context的使用執行個體_Android

來源:互聯網
上載者:User

大家好,今天給大家分享一下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="androidintentactionMAIN" />         <category android:name="androidintentcategoryLAUNCHER" />       </intent-filter>     </activity>   </application> 

這個Application類是單例的,也就是說我們可以自己寫個Application(比如名為:MainApplication)類,來代替預設的Applicaiton,這個類可以儲存應用的全域變數,我們可以定義一個全域的Context.供外部調用.用法如下:

package com.tutor.application;  import androidappApplication; import androidcontentContext;  public class MainApplication extends Application {    /**    * 全域的上下文    */   private static Context mContext;      @Override   public void onCreate() {     superonCreate();          mContext = getApplicationContext();        }        /**擷取Context    * @return    */   public static Context getContext(){     return mContext;   }         @Override   public void onLowMemory() {     superonLowMemory();   }       } 

我們需要在AndroidMainifest.xml把MainApplication註冊進去(第10行代碼):

<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemasandroidcom/apk/res/android"   package="comtutorapplication"   android:versionCode="1"   android:versionName="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="androidintentactionMAIN" />         <category android:name="androidintentcategoryLAUNCHER" />       </intent-filter>     </activity>   </application>    </manifest> 

為了讓大家更容易理解,寫了一個簡單的Demo.步驟如下:

第一步:建立一個Android工程ApplicationDemo,目錄結構如下:

第二步:建立MainApplication.Java,代碼和上面一樣我就不貼了.

第三步:建立一個工具類ToolsUtil.java,代碼如下

package com.tutor.application; import androidcontentContext; import androidwidgetToast;  /**  * @author frankiewei  * 應用的一些工具類  */ public class ToolUtils {      /**    * 參數帶Context    * @param context    * @param msg    */   public static void showToast(Context context,String msg){     ToastmakeText(context, msg, ToastLENGTH_SHORT)show();   }      /**    * 調用全域的Context    * @param msg    */   public static void showToast(String msg){     ToastmakeText(MainApplicationgetContext(), msg, ToastLENGTH_SHORT)show();   } } 

第四步:建立一個View命名為MainView.java就是我們Activity現實的View.代碼如下:

package com.tutor.application;  import androidappActivity; import androidcontentContext; import androidutilAttributeSet; import androidviewLayoutInflater; import androidviewView; import androidwidgetButton; import androidwidgetFrameLayout;  /**  * @author frankiewei  * 自訂的MainView  */ public class MainView extends FrameLayout implements ViewOnClickListener{      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();   }         private void setupViews(){     //擷取View的上下文     mContext = getContext();     //這裡將Context轉換為Activity     mActivity = (Activity)mContext;     LayoutInflater inflater = LayoutInflaterfrom(mContext);     View v = inflaterinflate(Rlayoutmain, null);     addView(v);          mArgButton = (Button)vfindViewById(Ridarg_button);     mGlobleButton = (Button)vfindViewById(Ridglo_button);     mExitButton = (Button)vfindViewById(Ridexit_button);          mArgButtonsetOnClickListener(this);     mGlobleButtonsetOnClickListener(this);     mExitButtonsetOnClickListener(this);   }    public void onClick(View v) {     if(v == mArgButton){       ToolUtilsshowToast(mContext, "我是通過傳遞Context參數顯示的!");     }else if(v == mGlobleButton){       ToolUtilsshowToast("我是通過全域Context顯示的!");     }else{       mActivityfinish();     }   }  } 

這裡MainView.java使用的布局main.xml代碼如下:

<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemasandroidcom/apk/res/android"   android:layout_width="fill_parent"   android:layout_height="fill_parent"   android:orientation="vertical" >    <TextView     android:layout_width="fill_parent"     android:layout_height="wrap_content"     android:text="Welcome to frankie wei's blog"      />      <Button     android:id="@+id/arg_button"     android:layout_width="fill_parent"     android:layout_height="wrap_content"     android:text="傳遞Context參數"     />      <Button     android:id="@+id/glo_button"     android:layout_width="fill_parent"     android:layout_height="wrap_content"     android:text="全域的Context"     />      <Button     android:id="@+id/exit_button"     android:layout_width="fill_parent"     android:layout_height="wrap_content"     android:text="退出App"     />  </LinearLayout> 

第五步:修改ApplicationDemoActivity.java,代碼如下:

package com.tutor.application;  import androidappActivity; import androidosBundle;  public class ApplicationDemoActivity extends Activity {   @Override   public void onCreate(Bundle savedInstanceState) {     superonCreate(savedInstanceState);          MainView mMainView = new MainView(this);     setContentView(mMainView);      }    } 

第六步:運行上述工程效果如下:

運行效果1                            

運行效果2---- 點擊第一個按鈕 

運行效果3---- 點擊第二個按鈕

以上就是本文的全部內容,希望對大家的學習有所協助,也希望大家多多支援雲棲社區。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.