博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
安卓开发中全局变量的创建
阅读量:4939 次
发布时间:2019-06-11

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

安卓APP开发过程中, 有的时候我们在应用程序的任何一个地方都需要访问一个全局变量,也就是在任何一个Activity中都可以访问的变量。它不会因为Activity的生命周期结束而消失。要实现应用程序级的变量,我们可以通过Application这个类来实现。

java:

package com.example.dazuoye;

import android.app.Application;

public class quanjubianliang extends Application {

private int curIndex;

public int getCurIndex() {

return curIndex;
}

public void setCurIndex(int curIndex) {

this.curIndex = curIndex;
}

}

 

 

然后在Androidmainfest.xml中

在<Application>中插入android:name=“你的java名字”

 

而在Activity中灵活使用即可

[java]

((quanjubianliang) getApplicationContext()).setCurIndex(要传入的数据); 
 
下次调用

int ad=((quanjubianliang) getApplicationContext()).getCurIndex();

Application是与应用同时存在的,也就是应用在它就在。

转载于:https://www.cnblogs.com/mrzhangkang/p/5237383.html

你可能感兴趣的文章
搭建交叉调试环境 arm-linux-gdb配合gdbserver
查看>>
使用Jsoup 抓取页面的数据
查看>>
使用命令批量对文件中出现的字符串进行替换
查看>>
C#获取URL参数值
查看>>
Struts 框架 之 文件上传下载案例
查看>>
【重走Android之路】【路线篇(二)】知识点归纳
查看>>
graphviz入门
查看>>
tomcat 系统架构与设计模式 第二部分 设计模式 转
查看>>
scanf中的%[^\n]%*c格式
查看>>
启动Eclipse报Initializing Java Tooling错误解决方法
查看>>
用jquery来实现类似“网易新闻”横向标题滑动的移动端页面
查看>>
(原)基于物品的协同过滤ItemCF的mapreduce实现
查看>>
CSS可以和不可以继承的属性
查看>>
eclipse每次当我按ctrl+鼠标点击代码,自动关闭,产生原因及解决办法!!
查看>>
hbase
查看>>
用PHP将Unicode 转化为UTF-8
查看>>
HDOJ1002 A+B Problem II
查看>>
ADB server didn't ACK(adb不能开启
查看>>
Python基础(三)
查看>>
Continuous integration
查看>>