在我的 map 应用程序中,我在 map 上显示一组叠加层。每当我点击叠加层时,我需要显示一个弹出窗口,就像这样
谁能帮我解决这个问题?
最佳答案
是的,您可以设计我们的 self 信息窗口,以便通过点击 map 显示信息。如果您理解,我会向您提供代码,请重播我。
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;
}
}
在这段代码中我设计了一个绘制信息窗口的函数
关于android - 如何在android中点击覆盖时显示弹出窗口?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4486864/
出于纯粹的兴趣,我很好奇如何按顺序创建PI,而不是在过程结果之后生成数字,而是让数字在过程本身生成时显示。如果是这种情况,那么数字可以自行产生,我可以对以前看到的数字实现垃圾收集,从而创建一个无限系列。结果只是在Pi系列之后每秒生成一个数字。这是我通过互联网筛选的结果:这是流行的计算机友好算法,类机器算法:defarccot(x,unity)xpow=unity/xn=1sign=1sum=0loopdoterm=xpow/nbreakifterm==0sum+=sign*(xpow/n)xpow/=x*xn+=2sign=-signendsumenddefcalc_pi(digits
如何在buildr项目中使用Ruby?我在很多不同的项目中使用过Ruby、JRuby、Java和Clojure。我目前正在使用我的标准Ruby开发一个模拟应用程序,我想尝试使用Clojure后端(我确实喜欢功能代码)以及JRubygui和测试套件。我还可以看到在未来的不同项目中使用Scala作为后端。我想我要为我的项目尝试一下buildr(http://buildr.apache.org/),但我注意到buildr似乎没有设置为在项目中使用JRuby代码本身!这看起来有点傻,因为该工具旨在统一通用的JVM语言并且是在ruby中构建的。除了将输出的jar包含在一个独特的、仅限ruby
我正在使用的第三方API的文档状态:"[O]urAPIonlyacceptspaddedBase64encodedstrings."什么是“填充的Base64编码字符串”以及如何在Ruby中生成它们。下面的代码是我第一次尝试创建转换为Base64的JSON格式数据。xa=Base64.encode64(a.to_json) 最佳答案 他们说的padding其实就是Base64本身的一部分。它是末尾的“=”和“==”。Base64将3个字节的数据包编码为4个编码字符。所以如果你的输入数据有长度n和n%3=1=>"=="末尾用于填充n%
我的代码目前看起来像这样numbers=[1,2,3,4,5]defpop_threepop=[]3.times{pop有没有办法在一行中完成pop_three方法中的内容?我基本上想做类似numbers.slice(0,3)的事情,但要删除切片中的数组项。嗯...嗯,我想我刚刚意识到我可以试试slice! 最佳答案 是numbers.pop(3)或者numbers.shift(3)如果你想要另一边。 关于ruby-多次弹出/移动ruby数组,我们在StackOverflow上找到一
exe应该在我打开页面时运行。异步进程需要运行。有什么方法可以在ruby中使用两个参数异步运行exe吗?我已经尝试过ruby命令-system()、exec()但它正在等待过程完成。我需要用参数启动exe,无需等待进程完成是否有任何rubygems会支持我的问题? 最佳答案 您可以使用Process.spawn和Process.wait2:pid=Process.spawn'your.exe','--option'#Later...pid,status=Process.wait2pid您的程序将作为解释器的子进程执行。除
我有一个包含模块的模型。我想在模块中覆盖模型的访问器方法。例如:classBlah这显然行不通。有什么想法可以实现吗? 最佳答案 您的代码看起来是正确的。我们正在毫无困难地使用这个确切的模式。如果我没记错的话,Rails使用#method_missing作为属性setter,因此您的模块将优先,阻止ActiveRecord的setter。如果您正在使用ActiveSupport::Concern(参见thisblogpost),那么您的实例方法需要进入一个特殊的模块:classBlah
鉴于我有以下迁移:Sequel.migrationdoupdoalter_table:usersdoadd_column:is_admin,:default=>falseend#SequelrunsaDESCRIBEtablestatement,whenthemodelisloaded.#Atthispoint,itdoesnotknowthatusershaveais_adminflag.#Soitfails.@user=User.find(:email=>"admin@fancy-startup.example")@user.is_admin=true@user.save!ende
我正在为一个项目制作一个简单的shell,我希望像在Bash中一样解析参数字符串。foobar"helloworld"fooz应该变成:["foo","bar","helloworld","fooz"]等等。到目前为止,我一直在使用CSV::parse_line,将列分隔符设置为""和.compact输出。问题是我现在必须选择是要支持单引号还是双引号。CSV不支持超过一个分隔符。Python有一个名为shlex的模块:>>>shlex.split("Test'helloworld'foo")['Test','helloworld','foo']>>>shlex.split('Test"
我实际上是在尝试使用RVM在我的OSX10.7.5上更新ruby,并在输入以下命令后:rvminstallruby我得到了以下回复:Searchingforbinaryrubies,thismighttakesometime.Checkingrequirementsforosx.Installingrequirementsforosx.Updatingsystem.......Errorrunning'requirements_osx_brew_update_systemruby-2.0.0-p247',pleaseread/Users/username/.rvm/log/138121
这可能是个愚蠢的问题。但是,我是一个新手......你怎么能在交互式rubyshell中有多行代码?好像你只能有一条长线。按回车键运行代码。无论如何我可以在不运行代码的情况下跳到下一行吗?再次抱歉,如果这是一个愚蠢的问题。谢谢。 最佳答案 这是一个例子:2.1.2:053>a=1=>12.1.2:054>b=2=>22.1.2:055>a+b=>32.1.2:056>ifa>b#Thecode‘if..."startsthedefinitionoftheconditionalstatement.2.1.2:057?>puts"f