在我在android.i中的地图应用程序中使用ShowTheatersTask
类在地图上显示附近的影院,并且在剧院点击我必须显示路线。我正在HelloItemizedOverlay类中创建WebViewDemo的Obj。我正在访问showDrections()
中的全局变量,其中ShowTheatersTask doInBackground()
中修改后显示空值。current_latitude
,current_langitude
为0.0
,它们在{{中初始化1}}这是全局变量。请帮助我获取onCreate()
的原因。这里是代码的主要部分。
注意:在我NullPointerException
类的onTap(int index)
我正在创建obj
WebViewDemo.java
HelloItemizedOverlay
HelloItemizedOverlay.java
public class WebViewDemo extends MapActivity {
public double current_latitude, current_langitude;
public String lat = null, lng = null;
ShowTheatersTask showTheatersTask;
private LocationManager locationManager;
public void onCreate(Bundle savedInstanceState) {
.....
locationManager.requestLocationUpdates(
LocationManager.NETWORK_PROVIDER, 0, 0, locationListener);
Location location = locationManager
.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
if (location != null) {
dialog = ProgressDialog.show(WebViewDemo.this, "Please wait",
"Theaters are loading...", true);
dialog.show();
current_latitude = location.getLatitude();
current_langitude = location.getLongitude();
.......
showTheatersTask = new ShowTheatersTask();
showTheatersTask.execute(current_latitude, current_langitude);
}
class ShowTheatersTask extends AsyncTask<Double, Void, Void> {
@Override
protected Void doInBackground(Double... params) {
double latitude = params[0], langitude = params[1];
try {
httpClient = new DefaultHttpClient();// Client
postRequest = new HttpPost(..web service call..);
response = httpClient.execute(postRequest);
//Sure getting responne as JSOn object
for (int i = 0; i < jsonArray.length(); i++) {
JSONObject jsonData = jsonArray.getJSONObject(i);
String name = jsonData.getString("name");
JSONObject locObject = jsonData.getJSONObject("geometry")
.getJSONObject("location");
lat = locObject.getString("lat");
lng = locObject.getString("lng");
point = new GeoPoint((int) (Double.parseDouble(lat) * 1E6),
(int) (Double.parseDouble(lng) * 1E6));
overlayitem = new MyOverLayItem(point, name,
jsonData.getString("vicinity"), null);
itemizedoverlay.addOverlay(overlayitem);
mapOverlays.add(itemizedoverlay);
}
mapController.animateTo(point);
mapView.postInvalidate();
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
public void showDrections() {
/*****************
*Here values are coming null
*****************/
try {
Log.d("current lat lng values", current_latitude+" "+current_langitude);
Log.d("lat lng values", lat+" "+lng);
}
答案 0 :(得分:1)
为什么要在onClick()中创建活动类的新对象,即在HelloItemizedOverlay类的onTap()
中WebViewDemo demo=new WebViewDemo();
demo.showDrections();
我知道current_latitude和current_langitude是原始数据类型,它不应该是空值,也不是NullPointerException的原因。您的logcat堆栈跟踪可以提供更多帮助。
但很明显,您不必创建Activity类的新实例,即WebViewDemo demo = new WebViewDemo();
答案 1 :(得分:0)
doInBackground没有在UI线程上运行,这就是你获得异常的原因。您必须在onProgressUpdate和onPostExecute中更新您的地图。