java—如何将数据从活动发送到存储库?

pdsfdshx  于 2021-07-08  发布在  Java
关注(0)|答案(0)|浏览(287)

我想从一个活动的变量中发送一些值到存储库。不幸的是,我不能使用getintent()方法。那我该怎么做呢?

Bundle bundle = new Bundle();
                    bundle.putDouble("lat", location.getLatitude());
                    bundle.putDouble("lon", location.getLongitude());

                    Intent intent = new Intent(getApplicationContext(), ForecastRepository.class);
                    intent.putExtras(bundle);

startActivity(new Intent(getApplicationContext(), MainActivity.class))

;
存储库

private void getCoords(){
    //TODO
}

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题