返回顶部
首页 > 资讯 > 移动开发 >谈谈Android里的Context的使用实例
  • 838
分享到

谈谈Android里的Context的使用实例

contextAndroid 2022-06-06 05:06:39 838人浏览 独家记忆
摘要

大家好,今天给大家分享一下Android里的Context的一些用法,以前经常有人在群里问我比如我在一个工具类里的某个方法,或者View里需要调用Context.但是工具类还有

大家好,今天给大家分享一下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(); 
  }   
   
  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; 
 
public class ToolUtils { 
   
  public static void showToast(Context context,String msg){ 
    ToastmakeText(context, msg, ToastLENGTH_SHORT)show(); 
  } 
   
  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; 
 
public class MainView extends FrameLayout implements ViewOnClickListener{ 
  private Context mContext; 
  private Activity Mactivity; 
   
  private Button mArgButton; 
   
  private Button mGlobleButton; 
   
  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---- 点击第二个按钮

您可能感兴趣的文章:Android 中Context的使用方法详解Android编程实现全局获取Context及使用Intent传递对象的方法详解Android全局获取Context实例详解Android编程实现为ListView创建上下文菜单(ContextMenu)的方法Android context源码详解及深入分析Android面试笔记之常问的Context避免 Android中Context引起的内存泄露安卓Android Context类实例详解详解Android中的Context抽象类深入解析Android App开发中Context的用法Android编程获取全局Context的方法Android编程中context及全局变量实例详解Android中ContextMenu用法实例android基础教程之context使用详解Android获取其他包的Context实例代码android中Context深入详解


--结束END--

本文标题: 谈谈Android里的Context的使用实例

本文链接: https://lsjlt.com/news/23144.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作