Android 如何在安卓系统中点击覆盖显示弹出窗口?

Android 如何在安卓系统中点击覆盖显示弹出窗口?,android,google-maps,android-mapview,Android,Google Maps,Android Mapview,在我的地图应用程序中,我在地图上显示一组覆盖图。每当我点击一个覆盖我需要显示一个弹出窗口,像这样 有人能帮我解决这个问题吗?是的,您可以设计我们的自我信息窗口,在地图上点击显示信息。我向您提供代码,如果您理解,请重播我 public class MapLocationOverlay extends Overlay { private boolean isNameAddHold=true; private Bitmap bitmap,bitCross,bitMoreIn

在我的地图应用程序中,我在地图上显示一组覆盖图。每当我点击一个覆盖我需要显示一个弹出窗口,像这样


有人能帮我解决这个问题吗?

是的,您可以设计我们的自我信息窗口,在地图上点击显示信息。我向您提供代码,如果您理解,请重播我

public class MapLocationOverlay  extends Overlay  {

    private boolean isNameAddHold=true;

     private Bitmap bitmap,bitCross,bitMoreInformation;
    int testX,testY,count=0;
    int infoWindowOffsetX,infoWindowOffsetY;
    public String name,address,argName,argAddress,argid;
    //  Store these as global instances so we don't keep reloading every time
    private Bitmap bubbleIcon, shadowIcon;

    private MapLocationViewer mapLocationViewer;
    double toLat, toLng;

    private Paint   innerPaint, borderPaint, textPaint;
    private boolean isRemovePriorPopup=false;
    private boolean temp=true,first=true, firstDraw = true;
    public boolean tempDefaule=true;
    public MoreInformation myMoreInformation;
    public PantryLocation location;

    //  The currently selected Map Location...if any is selected.  This tracks whether an information  
    //  window should be displayed & where...i.e. whether a user 'clicked' on a known map location
    private PantryLocation selectedMapLocation;  

    public MapLocationOverlay(MapLocationViewer mapLocationViewer,PantryLocation arglocation) {

        this.mapLocationViewer = mapLocationViewer;
        location=arglocation;
        bubbleIcon = BitmapFactory.decodeResource(mapLocationViewer.getResources(),R.drawable.bubble);
        shadowIcon = BitmapFactory.decodeResource(mapLocationViewer.getResources(),R.drawable.shadow);
        bitmap = BitmapFactory.decodeResource(mapLocationViewer.getResources(),R.drawable.infowindow);
        bitCross = BitmapFactory.decodeResource(mapLocationViewer.getResources(),R.drawable.crass);
        bitMoreInformation = BitmapFactory.decodeResource(mapLocationViewer.getResources(),R.drawable.more_informations_new);
    }

    @Override
    public boolean onTouchEvent(MotionEvent e, MapView mapView) {
        // TODO Auto-generated method stub
         if (e.getAction() == 0)
         {
             this.tempDefaule=false;
         }
         if (e.getAction() == 1)
         {
             this.tempDefaule=false;
         }
         if (e.getAction() == 2)
         {
             this.tempDefaule=false;
         }
        return super.onTouchEvent(e, mapView);
    }       

    @Override
    public boolean onTap(GeoPoint p, MapView    mapView)  {
        //this.tempDefaule=false;
        //  Store whether prior popup was displayed so we can call invalidate() & remove it if necessary.

        //  Next test whether a new popup should be displayed

            selectedMapLocation = getHitMapLocation(mapView,p);

            mapView.invalidate();       

        //  Lastly return true if we handled this onTap()
        return selectedMapLocation != null;
    }

    @Override
    public void draw(Canvas canvas, MapView mapView, boolean shadow) {

        drawMapLocations(canvas, mapView, shadow);
        //this.tempDefaule=false;
        drawInfoWindow(canvas, mapView, shadow);
        //this.tempDefaule=false;
        }

    /**
     * Test whether an information balloon should be displayed or a prior balloon hidden.
     */
    private PantryLocation getHitMapLocation(MapView    mapView, GeoPoint   tapPoint) {

        //  Track which MapLocation was hit...if any
        PantryLocation hitMapLocation = null;

        RectF hitTestRecr = new RectF();
        Point screenCoords = new Point();
        ArrayList<PantryLocation> iterator =mapLocationViewer.getMapLocations();
        for(int i=0;i<iterator.size();i++) {       
            PantryLocation testLocation = iterator.get(i);

            //  Translate the MapLocation's lat/long coordinates to screen coordinates
            mapView.getProjection().toPixels(testLocation.getPoint(), screenCoords);

            // Create a 'hit' testing Rectangle w/size and coordinates of our icon
            // Set the 'hit' testing Rectangle with the size and coordinates of our on screen icon
            hitTestRecr.set(-bubbleIcon.getWidth()/2,-bubbleIcon.getHeight(),bubbleIcon.getWidth()/2,0);
            hitTestRecr.offset(screenCoords.x,screenCoords.y);

            //  Finally test for a match between our 'hit' Rectangle and the location clicked by the user
            mapView.getProjection().toPixels(tapPoint, screenCoords);
            //hitMapLocation = testLocation;
            if (hitTestRecr.contains(screenCoords.x,screenCoords.y)) {
                hitMapLocation = testLocation;
                first = true;
                isNameAddHold = true;
                break;
            }
        }
        testX=(int)screenCoords.x;
        testY=(int)screenCoords.y;
        //  Lastly clear the newMouseSelection as it has now been processed
        tapPoint = null;
        if(hitMapLocation==null && selectedMapLocation!=null)
        return selectedMapLocation; 

        return hitMapLocation;

    }

    private void drawMapLocations(Canvas canvas, MapView    mapView, boolean shadow) {
        int i=0;count++;
        ArrayList<PantryLocation> iterator =mapLocationViewer.getMapLocations();
        Point screenCoords = new Point();
        for(i=0;i<iterator.size();i++) {       
            PantryLocation location = iterator.get(i);
            mapView.getProjection().toPixels(location.getPoint(), screenCoords);
            //mapView.getController().setCenter(location.getPoint());
            if (shadow) {
                //  Only offset the shadow in the y-axis as the shadow is angled so the base is at x=0; 
                canvas.drawBitmap(shadowIcon, screenCoords.x, screenCoords.y - shadowIcon.getHeight(),null);
            } else {
                canvas.drawBitmap(bubbleIcon, screenCoords.x - bubbleIcon.getWidth()/2, screenCoords.y - bubbleIcon.getHeight(),null);
            }

        }
//      if(i==iterator.size()){
//          this.tempDefaule=false;}
if(tempDefaule==true)
{

            PantryLocation location1 = this.location;
            //mapView.getProjection().toPixels(location.getPoint(), screenCoords);
            Point screenCoord = new Point();
            mapView.getController().setCenter(location1.getPoint());
            mapView.getController().setZoom(15);
        //  tempDefaule=false;
                //mapView.getController().setCenter(location.getPoint());   

        }

            //tempDefaule=false;    
}           //mapView.getProjection().toPixels(location.getPoint(), screenCoord);
            //canvas.drawBitmap(bubbleIcon, screenCoord.x - bubbleIcon.getWidth()/2, screenCoord.y - bubbleIcon.getHeight(),null);
            //mapView.invalidate();


    private void drawInfoWindow(Canvas canvas, MapView  mapView, boolean shadow) {
        //this.tempDefaule=false;
        if ( selectedMapLocation != null) {
            if ( shadow) {
                //  Skip painting a shadow in this tutorial
            } else {
                //  First determine the screen coordinates of the selected MapLocation
                isRemovePriorPopup=true;
                Point selDestinationOffset = new Point();
                mapView.getProjection().toPixels(selectedMapLocation.getPoint(), selDestinationOffset);

                //  Setup the info window with the right size & location
                int INFO_WINDOW_WIDTH = 125;
                int INFO_WINDOW_HEIGHT = 25;
                RectF infoWindowRect = new RectF(0,0,100,20);   
                RectF closeRect = new RectF(0,0,20,20); 
                 infoWindowOffsetX = selDestinationOffset.x-INFO_WINDOW_WIDTH/2;
                 infoWindowOffsetY = selDestinationOffset.y-INFO_WINDOW_HEIGHT-bubbleIcon.getHeight();
                 infoWindowRect.offset(infoWindowOffsetX+95,infoWindowOffsetY-45);
                 closeRect.offset(infoWindowOffsetX+160,infoWindowOffsetY-90);
                 Paint myPaintBlack=new Paint();
                    Paint myPaintWhite=new Paint();

                    myPaintWhite.setARGB(255, 255, 255, 255);


                //  Draw inner info window
                canvas.drawRoundRect(infoWindowRect, 5, 5, getInnerPaint());

                //  Draw border for info window
                canvas.drawRoundRect(infoWindowRect, 5, 5, getBorderPaint());

                //  Draw the MapLocation's name


                myPaintBlack.setColor(Color.BLACK);
                myPaintBlack.setTextSize(20);

                canvas.drawBitmap(bitmap, infoWindowOffsetX-50, infoWindowOffsetY-100,getInnerPaint());
                if(isNameAddHold)
                {
                argid=selectedMapLocation.getID();
                argName=selectedMapLocation.getName();
                name=selectedMapLocation.getName();
                toLat = selectedMapLocation.getLatitude();
                toLng = selectedMapLocation.getLongitude();
                if(name.length()>18)
                name=selectedMapLocation.getName().substring(0,18)+"..";
                argAddress=selectedMapLocation.getAddress();
                address=selectedMapLocation.getAddress();
                if(address.length()>30)
                address=selectedMapLocation.getAddress().substring(0,30)+"..";
                }
                canvas.drawText(name,infoWindowOffsetX-45,infoWindowOffsetY-70,myPaintBlack);
                myPaintBlack.setTextSize(13);
                canvas.drawText(address,infoWindowOffsetX-45,infoWindowOffsetY-55,myPaintBlack);

            //  Draw inner info window
                canvas.drawRoundRect(infoWindowRect, 5, 5, getInnerPaint());

                //  Draw border for info window
                canvas.drawRoundRect(infoWindowRect, 5, 5, getBorderPaint());
                //  Draw the MapLocation's name
                myPaintBlack.setColor(Color.CYAN);
                myPaintBlack.setTextSize(11);
                //canvas.drawText("Click for more info..",infoWindowOffsetX+105,infoWindowOffsetY-33,myPaintBlack);
                canvas.drawBitmap(bitMoreInformation, infoWindowOffsetX+95, infoWindowOffsetY-45,getInnerPaint());
                //canvas.drawBitmap(bitCross, infoWindowOffsetX+160, infoWindowOffsetY-90,getInnerPaint());

            }
        }
        if(isRemovePriorPopup)
        {
        if(((testX>(infoWindowOffsetX+95)&&testX<(infoWindowOffsetX+195)))&&(testY>(infoWindowOffsetY-45)&&testY<(infoWindowOffsetY-25)))
            {
            if(temp){
                try
                {
                    temp=false;
                    isNameAddHold=false;
                isRemovePriorPopup=false;
                Context context=mapLocationViewer.cn;
                Toast.makeText(context, "Loading...", Toast.LENGTH_SHORT).show();
                Intent intent=new Intent(context, MoreInformation.class);
                intent.putExtra("Id",argid);
                intent.putExtra("Name",argName);
                intent.putExtra("Address",argAddress);
                intent.putExtra("Latitude",toLat);
                intent.putExtra("Longitude",toLng);

                context.startActivity(intent);

                }
                catch (Exception ex)
                {
                    Log.d("Redirected Error :", ex.getMessage());
                }
        //canvas.drawText("This is for Testing",testX,testY,myPaintBlack);
            }}
            else if(((testX>(infoWindowOffsetX+160)&&testX<(infoWindowOffsetX+180)))&&(testY>(infoWindowOffsetY-90)&&testY<(infoWindowOffsetY-70)))
            {

                if(isRemovePriorPopup)
                {
                 isRemovePriorPopup=false;                  
                 selectedMapLocation=null;
                 draw(canvas, mapView, shadow);
                // mapLocationViewer.setDZoom();
                }

            }
        }
    }

    public Paint getInnerPaint() {
        if ( innerPaint == null) {
            innerPaint = new Paint();
            innerPaint.setARGB(225, 75, 75, 75); //gray
            innerPaint.setAntiAlias(true);
        }
        return innerPaint;
    }

    public Paint getBorderPaint() {
        if ( borderPaint == null) {
            borderPaint = new Paint();
            borderPaint.setARGB(255, 255, 255, 255);
            borderPaint.setAntiAlias(true);
            borderPaint.setStyle(Style.STROKE);
            borderPaint.setStrokeWidth(2);
        }
        return borderPaint;
    }

    public Paint getTextPaint() {
        if ( textPaint == null) {
            textPaint = new Paint();
            textPaint.setARGB(255, 255, 255, 255);
            textPaint.setAntiAlias(true);
        }
        return textPaint;
    }


}
公共类MapLocationOverlay扩展了覆盖{
私有布尔值isNameAddHold=true;
私有位图位图、bitCross、bitMoreInformation;
int testX,testY,count=0;
int infoWindowOffsetX,infoWindowOffsetY;
公共字符串名称、地址、argName、argAddress、argid;
//将这些存储为全局实例,这样我们就不会每次都重新加载
私人点阵图标,幻影图标;
私有MapLocationViewer MapLocationViewer;
双重托拉特,托林;
私人涂料内涂料、边框涂料、文本涂料;
私有布尔值isRemovePriorPopup=false;
私有布尔值temp=true,first=true,firstDraw=true;
公共布尔值tempDefaule=true;
公开更多信息我的更多信息;
公共场所;
//当前选择的地图位置…如果选择了任何。这将跟踪信息
//窗口应显示在何处,即用户是否“单击”已知地图位置
专用PantryLocation selectedMapLocation;
公共MapLocationOverlay(MapLocationViewer MapLocationViewer,PantryLocation arglocation){
this.mapLocationViewer=mapLocationViewer;
位置=arglocation;
bubbleIcon=BitmapFactory.decodeResource(mapLocationViewer.getResources(),R.drawable.bubble);
shadowIcon=BitmapFactory.decodeResource(mapLocationViewer.getResources(),R.drawable.shadow);
位图=BitmapFactory.decodeResource(mapLocationViewer.getResources(),R.drawable.infowindow);
bitCross=BitmapFactory.decodeResource(mapLocationViewer.getResources(),R.drawable.crass);
bitMoreInformation=BitmapFactory.decodeResource(mapLocationViewer.getResources(),R.drawable.more\u信息新增);
}
@凌驾
公共布尔onTouchEvent(MotionEvent e,MapView MapView){
//TODO自动生成的方法存根
如果(如getAction()==0)
{
这个.tempDefaule=false;
}
如果(例如getAction()==1)
{
这个.tempDefaule=false;
}
如果(例如getAction()==2)
{
这个.tempDefaule=false;
}
返回super.onTouchEvent(e,mapView);
}       
@凌驾
公共布尔onTap(地理点p,地图视图地图视图){
//这个.tempDefaule=false;
//存储是否显示了先前的弹出窗口,以便我们可以调用invalidate()&必要时将其删除。
//下一步测试是否应显示新的弹出窗口
selectedMapLocation=getHitMapLocation(地图视图,p);
mapView.invalidate();
//最后,如果我们处理了这个onTap(),则返回true
返回selectedMapLocation!=null;
}
@凌驾
公共空白绘制(画布、地图视图、地图视图、布尔阴影){
drawMapLocations(画布、地图视图、阴影);
//这个.tempDefaule=false;
drawInfoWindow(画布、地图视图、阴影);
//这个.tempDefaule=false;
}
/**
*测试是显示信息引出序号还是隐藏先前的引出序号。
*/
专用PantryLocation getHitMapLocation(地图视图地图视图,地质点tapPoint){
//跟踪命中的地图位置…如果有
PantryLocation hitMapLocation=null;
RectF hitTestRecr=new RectF();
点屏幕坐标=新点();
ArrayList迭代器=mapLocationViewer.getMapLocations();
对于(int i=0;i18)
name=selectedMapLocation.getName().substring(0,18)+.“;
argAddress=selectedMapLocation.getAddress();
地址=selectedMapLocation.getAddress();
if(address.length()>30)
address=selectedMapLocation.getAddress().子字符串(0,30)+.“;
}
canvas.drawText(名称,infoWindowOffsetX-45,infoWindowOffsetY-70,myPaintBlack);
myPaintBlack.SettexSize(13);
canvas.drawText(地址,infoWindowOffsetX-45,infoWindowOffsetY-55,myPaintBlack);
//绘制内部信息窗口
drawRoundRect(infoWindowRect,5,5,getInnerPaint());
//为信息窗口绘制边框
drawRoundRect(infoWindowRect,5,5,getBorderPaint());
//绘制地图位置的名称
myPaintBlack.setColor(Color.CYAN);
myPaintBlack.setTextSize(11);
//canvas.drawText(“单击以获取更多信息…”,infoWindowOffsetX+105,infoWindowOffsetY-33,myPaintBlack);
drawBitmap(bitMoreInformation、infoWindowOffsetX+95、infoWindowOffsetY-45、getInnerPaint());
//drawBitmap(bitCross、infoWindowOffsetX+160、infoWindowOffsetY-90、getInnerPaint());
}
}
如果(isRemovePriorPopup)
{
如果((testX>(infoWindowOffsetX+95)和&testX(infoWindowOffsetY-45)和&testY(infoWindowOffsetX+160)和&testX(infoWindowOffsetY-90)和&testY

map是Google map的一个对象。我正在使用此处标记设置弹出窗口

代码不可理解。请编辑并输入缺少的类?如public MoreInformation myMoreInformation;public PantryLocation location location;MapLocation Viewerits太长,而且不切题。我希望它更清晰。这个问题已经解决了讨论。查找详细信息。我已经看到了。这并没有满足我的疑问,我需要一个完全为int图像的弹出窗口。为此,你必须自定义弹出窗口。好的,我的意思是,我需要在点击位置用箭头弹出窗口。我使用了toast和自定义弹出窗口,但我无法在点击位置弹出窗口。你得到了吗
MarkerOptions maropt=new MarkerOptions()
    .position(new LatLng(lati, longi))
    .snippet("any text")
            .title("set title here");

map.addMarker(maropt);