2

我有一个非常奇怪的问题,它让我发疯。我从 AsyncTask 向我的地图添加标记以避免阻塞主线程。在带有 4.2.2 的 Nexus 4 中它工作正常,但在带有 3.2 的平板电脑 Galaxy 或带有 2.3.7 的 Galaxy ace 中,当执行 map.addMarker() 时,它给了我一个空指针异常。错误是针对 MarkerOption 的,因为如果我在 OnProgrssUpdate 中创建 MarkerOption 没有错误。我检查该对象不为空,它不是。即使我在 addMarker 之前放了一个 log.d 并且对象是正确的,但是我得到了错误。这里有代码:

    private class MapItems extends AsyncTask<Void, Item, Void> {
        @Override
        protected Void doInBackground(Void... values) {
            int density = getResources().getDisplayMetrics().densityDpi;
            for (int companyId : companies) {
                try {
                    Company company = DBCompanies.getCompany(db_path,
                            GSSettings.DBCODE, companyId);
                    LatLng pos = new LatLng(company.getLatitude(),
                            company.getLongitude());
                    if (pos.latitude == 0 && pos.longitude == 0)
                        continue;

                    Subcategory subcategory = DBParameters.getSubcategory(
                            db_path, GSSettings.DBCODE, company
                                    .getSubcategoriesId()[0], Locale
                                    .getDefault().getLanguage());


    Bitmap bitmap;
                    if (subcategory.getMarker() != null
                            && subcategory.getMarker().length > 1)
                        bitmap = GSTools.getBitmapFromMDPI(
                                subcategory.getMarker(), density);
                    else
                        bitmap = GSTools.getBitmapFromMDPI(
                                subcategory0.getMarker(), density);

                    MarkerOptions markerOptions = new MarkerOptions()
                            .position(pos).anchor(0, 1)
                            .title(company.getName())
                            .snippet(subcategory.getName())
                    .icon(BitmapDescriptorFactory.fromBitmap(bitmap));
            Item item = new Item(markerOptions, company.getId());

            publishProgress(item);
        } catch (Exception e) {
        }
    }
    return null;
}
    @Override
    protected void onProgressUpdate(Item... values) {
        try {
            MarkerOptions markerOptions = values[0].markerOptions;
            Log.d("marker", markerOptions.getTitle());


    //              markerOptions = new MarkerOptions()
    //                      .position(new LatLng(37.750087, -0.848522))
    //                      .anchor(0, 1)
    //                      .title("TT")
    //                      .icon(BitmapDescriptorFactory
    //                              .fromResource(R.drawable.ic_button_map));
            Marker m = map.addMarker(markerOptions);
            haspMap.put(m, values[0].comapnyId);
            Log.d("marker", markerOptions.getTitle());

        } catch (Exception e) {
            Log.d("marker", e.toString());
        }

        super.onProgressUpdate(values);
    }
    }

如果我使用 MarkerOption 注释的作品。任何想法????

谢谢。

4

1 回答 1

1

尝试使用:

mContext.runOnUiThread(new Runnable()
{
 public void run()
 {
    // add your marker here
    Marker m = map.addMarker(markerOptions);
    haspMap.put(m, company.getId());
    Log.d("marker", markerOptions.getTitle());

 }
});

而不是使用进度更新机制来更新你的 UI。mContext 是您的活动/上下文

于 2013-06-21T17:57:16.670 回答