2

最近、GoogleMapv2 をクリックした位置に正確に表示される PopupWindow を実装しました。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 ドローアブル:

<?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>        
4

1 に答える 1