博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android中Context简介
阅读量:6088 次
发布时间:2019-06-20

本文共 775 字,大约阅读时间需要 2 分钟。

The way to do this is to create your own subclass of , and then specify that class in the application tag in your manifest. Now Android will automatically create an instance of that class and make it available for your entire application. You can access it from any context using the Context.getApplicationContext() method (Activity also provides a method getApplication() which has the exact same effect):

classMyAppextendsApplication{
  privateString myState;   publicString getState(){
    return myState;   }   publicvoid setState(String s){
    myState = s;   } } classBlahextendsActivity{
  @Override   publicvoid onCreate(Bundle b){
    ...     MyApp appState =((MyApp)getApplicationContext());     String state = appState.getState();     ...   } }

转载地址:http://ufvwa.baihongyu.com/

你可能感兴趣的文章
通过思科模拟器CISCO PACKET TRACER学习网络12——静态NAT
查看>>
【12c OCP】CUUG OCP认证071考试原题解析(36)
查看>>
MongoDB、Hbase、Redis等NoSQL优劣势、应用场景
查看>>
Ubuntu下面MySQL的参数文件my.cnf浅析
查看>>
Tesra超算网络,解决AI开发困境
查看>>
The Quest Panel&obtain RS3gold free 900M runescape
查看>>
京东与万事达卡发布报告 移动支付战争C端转向B端
查看>>
screen命令详解
查看>>
使用 malloc后free出错 错误所在
查看>>
CentOS 搭建docker私有仓库实践
查看>>
VMware下安装QT Creator
查看>>
mysql从库出错
查看>>
vbs技巧
查看>>
Install Piwik 2.7 on CentOS 6.5
查看>>
xtrabackup备份和恢复MySQL
查看>>
Zabbix3.0.2监控Mongodb性能状态
查看>>
maven创建web项目
查看>>
允许Key重复的Map - IdentityHashMap
查看>>
Class文件解读(一)
查看>>
php 如何使用curl_file_create
查看>>