Maps and Fragments
This is my design Image
I have two fragments.FirstFragment -> map and SecondFragment -> weather
I am getting Latitude and Longitude from First Fragment from the code below:
mPlace.setLatlng(place.getLatLng());
In the SecondFragment i am executing Latitude and Longitude on this code:
asyncTask.execute("10.873873","78.818729");
Problem: I wanted to pass Latitude and Longitude from my FirstFragment to SecondFragment.
And i tried Bundle with arguments to pass data.it does'nt work.