Android不同Activity之间数据的传递

Android项目中,很多时候,我们需要在一个activity中,调用另一个Activity的数据,目前,比较通用的方法有这么几类,通过intent跳转携带数据,使用SharedPreferences保存数据,使用数据库保存数据,使用全局变量,保存数据。

1.intent跳转携带数据

发送方:

val intent = Intent(this,MineOrdersListActivity::class.java)
intent.putExtra("id",1)
startActivity(intent)

接收方:

val id = intent.getIntExtra("id",0)

2.SharedPreferences传递数据

在一个Activity里保存数据。

val sp = getSharedPreferences("info", Context.MODE_PRIVATE)
val ed = sp.edit()
ed.putString("number","1")
ed.commit()

在另一个Activity里读取数据

val num:String? = null
val sp = getSharedPreferences("info", Context.MODE_PRIVATE)
val number = sp.getString("number",num)

3.数据库保存数据,见我上一篇文章《Android数据库GreenDao的使用

4.全局变量保存数据

在项目的Application中初始化数据

class MyApplicatin : Application() {
    private var ylabel: String? = null
    fun getLabel(): String? {
        return ylabel
    }

    fun setLabel(s: String) {
        this.ylabel = s
    }
    override fun onCreate() {
        super.onCreate()
        setLabel("YUZHIBOYI_CSND!") //初始化全局变量
        
    }
}

在需要的地方修改字符串的数据

private var yApp: MyApplication? = null
override fun onCreate(savedInstanceState: Bundle?) {
    super.onCreate(savedInstanceState)
    setContentView(R.layout.activity_payment)
    yApp = application as MyApplication //获得自定义的应用程序YApp
    yApp!!.setLabel("YUZHIBOYI!")  //修改一下

在另外需要取数据的地方,取出数据

 

private MyApplication yApp;
@Override
   public void onCreate(Bundle savedInstanceState) {
       super.onCreate(savedInstanceState);
       setContentView(R.layout.pay_result);
   yApp = (MyApplication) getApplication();  //获得自定义的应用程序MyApp
   Log.i("YAnG", "查看变量值是否修改了:"+yApp.getLabel()); //查看变量值是否修改了
   }

另外大家有其他好的传递数据的方法,欢迎来讨论。 

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值