谈谈Android里的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(); } /**获取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---- 点击第二个按钮

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

时间: 2024-09-22 06:29:39

谈谈Android里的Context的使用实例的相关文章

Android编程中context及全局变量实例详解_Android

本文实例讲述了Android编程中context及全局变量的用法.分享给大家供大家参考,具体如下: 今天在研究context的时候,对application和activity context有了一定的了解,下面是从网上复制过来的资料 Application context和Activity context的区别: 这是两种不同的context,也是最常见的两种.第一种中context的生命周期与Application的生命周期相关的,context随着Application的销毁而销毁,伴随ap

Android全局获取Context实例详解

Android全局获取Context实例详解 在弹出Toast 启动活动 发送广播 操作数据库 使用通知等等时都需要Context 如果操作在活动中进行是很简单的,因为活动本身就是一个Context对象 但是当逻辑代码脱离了Activity类,此时使用Context就需要一些技巧了: 我们可以定制一个自己的Application类,以便管理程序内一些全局状态信息,比如全局Context 代码如下: public class MyApplication extends Application{ p

Android获取arrays.xml里的数组字段值实例详解

Android获取arrays.xml里的数组字段值实例详解 比如在arrays.xml里: <!--leo added for KYLIN-496--> <string-array name="reboot_item"> <item>Reboot</item> <item>Recovery</item> <item>BootLoader</item> </string-array&g

基于 SurfaceView 详解 android 幸运大转盘,附带实例app

基于 SurfaceView 详解 android 幸运大转盘,附带实例app       首先说一下,幸运大转盘,以及SurfaceView是在看了也为大神的博客,才有了比较深刻的理解,当然这里附上这位大神的博客地址:博客地址,有兴趣的话你可以去看看,里面有很多的例子.至于我为什么要写这篇博客?,原因之一:加强自己的理解,原因之二:大神的博客就是大神的博客,跳转的太快,基础不好的,很难理解.还有就是一天在实验室太无聊了,没事写写东西.这里我再来更加基础的分析一下.写的不好,原谅.有什么写的不对

Android 音乐播放器的开发实例详解_Android

   本文将引导大家做一个音乐播放器,在做这个Android开发实例的过程中,能够帮助大家进一步熟悉和掌握学过的ListView和其他一些组件.为了有更好的学习效果,其中很多功能我们手动实现,例如音乐播放的快进快退等.        先欣赏下本实例完成后运行的界面效果:         首先我们建立项目,我使用的SDK是Android2.2的,然后在XML中进行布局.        上方是一个ListView用来显示我们的音乐列表,中间是一个SeekBar可以拖动当前音乐的播放进度,之所以用Se

Android基于HttpUrlConnection类的文件下载实例代码

废话不多说了,直接给大家贴代码了,具体代码如所示: /** * get方法的文件下载 * <p> * 特别说明 android中的progressBar是google唯一的做了处理的可以在子线程中更新UI的控件 * * @param path */ private void httpDown(final String path) { new Thread() { @Override public void run() { URL url; HttpURLConnection connectio

Android 音乐播放器的开发实例详解

本文将引导大家做一个音乐播放器,在做这个Android开发实例的过程中,能够帮助大家进一步熟悉和掌握学过的ListView和其他一些组件.为了有更好的学习效果,其中很多功能我们手动实现,例如音乐播放的快进快退等. 先欣赏下本实例完成后运行的界面效果: 首先我们建立项目,我使用的SDK是Android2.2的,然后在XML中进行布局. 上方是一个ListView用来显示我们的音乐列表,中间是一个SeekBar可以拖动当前音乐的播放进度,之所以用SeekBar而不用ProgressBar是因为我们需

Android条目拖拽删除功能实例代码

项目中需求,要做条目条目拖拽删除效果,实际效果和QQ消息删除一样,侧滑有制定和删除. 效果图 第一步效果图 1.0自定义控件 SwipeLayout 继承FrameLayout重写里面三个构造方法,分别调用initView(). 2.0在布局中使用自定义控件 3.0在initView()方法中,创建拖拽辅辅助工具 ViewDragHelper() 该方法需要传入回调 MyCallBack() 4.0,创建MyCallBack()回调,继承ViewDragHelper.Callback 在回调中

Android 混淆代码详解及实例

  Android 混淆代码详解及实例         为了防止自己的劳动成果被别人窃取,混淆代码能有效防止被反编译,下面来总结以下混淆代码的步骤: 1. 大家也许都注意到新建一个工程会看到项目下边有这样proguard-project.txt一个文件,这个对混淆代码很重要,如果你不小心删掉了,没关系,从其他地方拷贝一个过来 2. 最重要的就是在proguard-project.txt添加混淆的申明了: a. 把所有你的jar包都申明进来,例如: -libraryjars libs/apns_1