简体   繁体   中英

Pass object from a Class to Activity

I want to send threeHourForecast object from onSuccess method back to activity from which it is called. I want clean and best solution for this problem. Here is my code.

Weather Forecast Handler Class:

open class WeatherForecastHandler {

open fun getForecast(lat: Double, lng: Double, weatherKey: String){
    val helper = OpenWeatherMapHelper(weatherKey)
    helper.setUnits(Units.METRIC)
    helper.setLang(Lang.ENGLISH)

    helper.getThreeHourForecastByGeoCoordinates(lat, lng, object : ThreeHourForecastCallback {
        override fun onSuccess(threeHourForecast: ThreeHourForecast) {//send this "threeHourForecast" object back to the place from which "getForecast()" method is called.}

        override fun onFailure(throwable: Throwable) {
            Log.d("forecast", throwable.message!!)
        }
    })
}

}

Calling Function Place:

Maps Activity Class:

open class MapsActivity : FragmentActivity(), OnMapReadyCallback{

private lateinit var googleMap: GoogleMap
private lateinit var startPoint: LatLng

override fun onCreate(savedInstanceState: Bundle?) {
    super.onCreate(savedInstanceState)
    setContentView(R.layout.activity_maps)

    val mapFragment = supportFragmentManager.findFragmentById(R.id.map) as SupportMapFragment?
    mapFragment!!.getMapAsync(this)

    val bundle: Bundle? = intent.getParcelableExtra("bundle")
    startPoint = bundle!!.getParcelable("startPoint")!!
}

override fun onMapReady(map: GoogleMap?) {
    googleMap = map!!
    val weatherHandler = WeatherForecastHandler()
    weatherHandler.getForecast(startPoint.latitude, startPoint.longitude, getString(R.string.key)
//I need object here.
}

Try to adding a function in your function type parameter. Like,

Weather Forecast Handler Class:

open fun getForecast(lat: Double, lng: Double, weatherKey: String, callback: ((result: ThreeHourForecast?) -> Unit)){
    val helper = OpenWeatherMapHelper(weatherKey)
    helper.setUnits(Units.METRIC)
    helper.setLang(Lang.ENGLISH)

    helper.getThreeHourForecastByGeoCoordinates(lat, lng, object : ThreeHourForecastCallback {
        override fun onSuccess(threeHourForecast: ThreeHourForecast) {//send this "threeHourForecast" object back to the place from which "getForecast()" method is called.
         callback(threeHourForecast)
        }

        override fun onFailure(throwable: Throwable) {
         callback(null)
        }
    })
}

Maps Activity Class:

override fun onMapReady(map: GoogleMap?) {
    googleMap = map!!
    val weatherHandler = WeatherForecastHandler()
    weatherHandler.getForecast(startPoint.latitude, startPoint.longitude, getString(R.string.key) { result: ThreeHourForecast? ->
 // You can now receive value of 'threeHourForecast'
}
//I need object here.
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM