如何从非 UI 线程中膨胀 MapView

发布于 2024-11-25 14:31:05 字数 1399 浏览 1 评论 0原文


我的应用程序使用 HoneyComb 片段,其中我的左侧面板有列表视图,右侧面板有一个带有一些 TextView 的 MapView。最初我在 map_fragment_right_side.xml 中编写了地图视图,这导致屏幕长时间冻结,所以我决定膨胀地图在运行时在 AsyncTask 中查看是徒劳的。代码是这样的

class LoadMapTask extends AsyncTask<String, Void, Boolean>
{

    MapView inflatedMapView = null;

    @Override
    protected void onPreExecute() {

        progressbar.setVisibility( View.VISIBLE );

    }


    @Override
    protected Boolean doInBackground(String... params)
    {


        try{

        inflatedMapView = new MapView(getActivity(),getActivity().getResources().getString(R.string.mapkey));

        addMapViewhere.addView(inflatedMapView);


        inflatedMapView.getController().setCenter(getPoint(Double.valueOf(latitude),Double.valueOf(longitude)));

        inflatedMapView.getController().setZoom(17);

        inflatedMapView.setBuiltInZoomControls(true);

        sites=new SitesOverlay();

        inflatedMapView.getOverlays().clear();

        inflatedMapView.getOverlays().add(sites);

        }catch (Exception e) {
         e.printStackTrace();
        }


        return true;

    }

    @Override
    protected void onPostExecute(Boolean res)
    {
        if( progressbar != null )
        {
            progressbar.setVisibility( View.GONE );
        }






    }

}

我怀疑是否可以从非 UI 线程膨胀地图视图。如果有人建议我,我会很高兴正确的方法是这样做。我不希望屏幕在地图加载之前冻结。
谢谢,
加内什

My app uses HoneyComb fragments where my left side panel has listview and right side panel has a MapView with some TextViews.Initially i wrote map view in the map_fragment_right_side.xml which resulted in freezing the screen for long time ,so I decided to inflate the map view at runtime in an AsyncTask in vain .The code goes like this

class LoadMapTask extends AsyncTask<String, Void, Boolean>
{

    MapView inflatedMapView = null;

    @Override
    protected void onPreExecute() {

        progressbar.setVisibility( View.VISIBLE );

    }


    @Override
    protected Boolean doInBackground(String... params)
    {


        try{

        inflatedMapView = new MapView(getActivity(),getActivity().getResources().getString(R.string.mapkey));

        addMapViewhere.addView(inflatedMapView);


        inflatedMapView.getController().setCenter(getPoint(Double.valueOf(latitude),Double.valueOf(longitude)));

        inflatedMapView.getController().setZoom(17);

        inflatedMapView.setBuiltInZoomControls(true);

        sites=new SitesOverlay();

        inflatedMapView.getOverlays().clear();

        inflatedMapView.getOverlays().add(sites);

        }catch (Exception e) {
         e.printStackTrace();
        }


        return true;

    }

    @Override
    protected void onPostExecute(Boolean res)
    {
        if( progressbar != null )
        {
            progressbar.setVisibility( View.GONE );
        }






    }

}

I doubt whether its possible to inflate map view from non-UI thread .I will be glad if someone suggest me the right way to do this.I don't want the screen to freeze until map gets loaded.
thanks,
ganesh

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

秋凉 2024-12-02 14:31:05

onPreExecute() 或在 onPostExecute() 中对其进行充气

Inflate it from onPreExecute() or in onPostExecute()

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文