如何以屏幕上点击的点为中心显示PopupWindow?

时间:2013-03-30 12:32:54

标签: android onclick popupwindow gravity

我最近实现了一个PopupWindow,它完全显示在我点击GoogleMapv2的位置。 我将LatLng地图位置转换为屏幕位置,将重力设置为中心并显示在屏幕上。然后,在没有任何代码更改的情况下,它开始在点击点上方显示一点,我不知道哪里出错了。请帮忙!我急于解决任何问题,实际上我只想在地图上显示一个进度对话框。

这是我的代码:

mMap.setOnMapClickListener(new OnMapClickListener()
        {
            @Override
            public void onMapClick(LatLng point)
            {       
    View popUpView = getLayoutInflater().inflate(R.layout.popup, null); 
    LinearLayout layout = (LinearLayout) popUpView.findViewById(R.id.popup);
      ProgressBar progressBar = new ProgressBar(MainActivity.this);        
          progressBar.setIndeterminateDrawable(getResources().getDrawable(R.drawable.dialog));
    layout.addView(progressBar);

    mpopup = new PopupWindow(popUpView, 30,30, false); //Creation of popup
    mpopup.setOnDismissListener(MainActivity.this);
    mpopup.setAnimationStyle(android.R.style.Animation_Dialog);             
    pinToScreen(point, popUpView);
            }
        });
    }
}

private void pinToScreen(LatLng point, View popupView)
{
    Projection projection = mMap.getProjection();       
    Point pixPoint = projection.toScreenLocation(point);
    LatLng latlng=projection.fromScreenLocation(pixPoint);
    DisplayMetrics dm = getResources().getDisplayMetrics();
    int screenwidth = dm.widthPixels;
    int screenheight = dm.heightPixels;     
    mpopup.showAtLocation(popupView, Gravity.CENTER,
                                  pixPoint.x-screenwidth/2, pixPoint.y-screenheight/2;      
}

R.layout.popup:

LinearLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
 android:id="@+id/popup"
 android:layout_width="fill_parent"
 android:orientation="vertical"
 android:background="@android:color/transparent"
 android:layout_height="fill_parent"
 android:gravity="center"
 android:layout_gravity="center">
LinearLayout>

ProgressDialog drawable:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" 
android:shape="oval"
android:visible="true"
android:innerRadius="60dp"

><solid 
    android:color="@color/skypicker_blue1"       
    />
<stroke android:color="@color/transparent_blue2"
    android:width="1dp"/>

</shape>        

1 个答案:

答案 0 :(得分:0)

问题是应用程序没有全屏显示,因此从点击的LatLng转换的屏幕点与实际屏幕点不对应,偏移量是Android上顶部面板的高度。当我将应用程序全屏显示时,它有所帮助。但是,我仍然不知道如何获得Android顶级面板的高度......