我想从一个活动的变量中发送一些值到存储库。不幸的是,我不能使用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
}
暂无答案!
目前还没有任何答案,快来回答吧!