0

谁能建议我应该实现什么,以显示等待消息,直到 LocationListener.onLocationChanged 被调用?
我尝试使用没有标题的对话框,但问题是 -
1. 如果我成功了setCancelable(false),用户甚至无法按下后退按钮。
2. 如果我做setCancelable(true),那么它会在 onLocationChanged() 之前熄灭。
下面是我的代码

AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setMessage("Please Wait for GPS Signals...").setCancelable(false);
mLocationWaitDialog = builder.create();
mLocationWaitDialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
WindowManager.LayoutParams layoutParam = mLocationWaitDialog.getWindow().getAttributes();
Display display = getWindowManager().getDefaultDisplay();
int width = display.getWidth();
int height = display.getHeight();

layoutParam.y = -height / 2; // y position
mLocationWaitDialog.show(); 
4

3 回答 3

1

我有这个:

在 OnCreate 方法中:

if (lastKnownLocation == null) {
        Log.i("Location", "lastKnownLocation es null");
        dialog = ProgressDialog.show(this, "Buscando...", "");
}

上面声明了对话框,它是一个 ProgressDialog。

然后,在处理程序中:

handler = new Handler() {

        @Override
        public void handleMessage(Message msg) {
            Log.i("Location", "Mensaje recibido2");
            if(dialog!=null){

            dialog.dismiss();
            }

            LatLng gpsrc = new LatLng(msg.getData().getDouble("lat"),
                    msg.getData().getDouble("lon"));

            continuar(gpsrc);
        }
    };

我的 onLocationChanged 方法:

public void onLocationChanged(Location location) {

    double nuevalat=location.getLatitude();
    double nuevalon=location.getLongitude();
    origen=new LatLng(nuevalat, nuevalon);
    Bundle bundle=new Bundle();
    bundle.putDouble("lat", origen.latitude);
    bundle.putDouble("lon", origen.longitude);
    Message mescoords = new Message();
    mescoords.setData(bundle);

    try {
        handler.sendMessage(mescoords);
    } catch (Exception e) {
        e.printStackTrace();
    }



}

这样,当调用 onLocationChanged 方法时,会发送一条消息,该消息会关闭 ProgressDialog。尝试使用 ProgressDialog 用户是否可以返回,我不确定。

于 2013-05-17T11:31:31.170 回答
0
ProgressDialog pd = new ProgressDialog(activity);
pd.setMessage("Loading.. Please wait");
pd.show();

在 onLocationChanged() 里面停止它

pd.dismiss();
于 2013-05-17T11:20:40.660 回答
0

我会尝试设置一个超时计时器,在一定时间后将可取消设置为真。这将解决您让它立即消失的问题,同时如果找不到 GPS,也不会将用户锁定在一个循环中。

于 2013-05-17T11:21:45.363 回答