在Application中保存全局变量
1.新建一个类MyApp继承Application
import android.app.Application;
public class MyApp extends Application {
private String username;
public synchronized String getUsername() {
return username;
}
public synchronized void setUsername(String username) {
this.username = username;
}
}
2.在AndroidManifest.xml文件中配置
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.ballonbay"
android:versionCode="1"
android:versionName="1.0">
<application android:name=".MyApp" android:icon="@drawable/app_icon" android:label="@string/app_name">
……
</application>
</manifest>3.在Activity中获取
MyApp myApp = (MyApp) getApplication();
相关推荐
Lzs 2020-10-23
聚合室 2020-11-16
零 2020-09-18
Justhavefun 2020-10-22
ChaITSimpleLove 2020-10-06
周游列国之仕子 2020-09-15
afanti 2020-09-16
88234852 2020-09-15
YClimb 2020-09-15
风雨断肠人 2020-09-04
卖口粥湛蓝的天空 2020-09-15
stulen 2020-09-15
pythonxuexi 2020-09-06
abfdada 2020-08-26
梦的天空 2020-08-25