I'm working on an android app where i have a google map and markers of different categories.I have a database where i have different tables of each category.Each table cosists of 3 columns:latitude,longtitude and the name of the specific point.I'm trying when i click on each marker to show a baloon with a note in it.The note must be the name that i should get it from my database.I have created two classes.The first is tha BaloonLayout:
package com.javacodegeeks.android.googlemaps;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Paint;
import android.graphics.Path;
import android.graphics.RectF;
import android.os.Message;
import android.util.AttributeSet;
import android.view.View;
import android.widget.LinearLayout;
public class BaloonLayout extends LinearLayout {
public static int tipWidth =9; // px
public static int tipHeight =5; // px
public BaloonLayout(Context context, AttributeSet attrs) {
super(context, attrs);
}
public BaloonLayout(Context context) {
super(context);
setPadding(getPaddingLeft(), getPaddingTop(), getPaddingRight(), getPaddingBottom() + tipHeight);
}
private static final int MAX_WIDTH_DP = 280;
final float SCALE = getContext().getResources().getDisplayMetrics().density;
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec)
{
int mode = MeasureSpec.getMode(widthMeasureSpec);
int measuredWidth = MeasureSpec.getSize(widthMeasureSpec);
int adjustedMaxWidth = (int) (MAX_WIDTH_DP * SCALE + 0.5f);
int adjustedWidth = Math.min(measuredWidth, adjustedMaxWidth);
int adjustedWidthMeasureSpec = MeasureSpec.makeMeasureSpec(adjustedWidth, mode);
super.onMeasure(adjustedWidthMeasureSpec, heightMeasureSpec);
}
@Override
protected void dispatchDraw(Canvas canvas) {
Paint panelPaint = new Paint();
panelPaint.setARGB(0, 0, 0, 0);
RectF panelRect = new RectF();
panelRect.set(0,0, getMeasuredWidth(), getMeasuredHeight());
canvas.drawRoundRect(panelRect, 5, 5, panelPaint);
RectF baloonRect = new RectF();
baloonRect.set(0,0, getMeasuredWidth(), 2*(getMeasuredHeight()/3));
panelPaint.setARGB(230, 255, 255, 255);
canvas.drawRoundRect(baloonRect, 10, 10, panelPaint);
Path baloonTip = new Path();
baloonTip.moveTo(5*(getMeasuredWidth()/8), 2*(getMeasuredHeight()/3));
baloonTip.lineTo(getMeasuredWidth()/2, getMeasuredHeight());
baloonTip.lineTo(3*(getMeasuredWidth()/4), 2*(getMeasuredHeight()/3));
canvas.drawPath(baloonTip, panelPaint);
super.dispatchDraw(canvas);
}
public static class BaloonOnClickListener implements View.OnClickListener {
public void onClick(View view) {
switch (view.getId()) {
case R.id.close_button:
Message message = new Message();
message.arg1 = GmapsActivity.HANDLER_MESSAGE_HIDE_BALOON;
GmapsActivity.handler.sendMessage(message);
break;
}
}
}
}
The second is the BaloonOverlay:
package com.javacodegeeks.android.googlemaps;
import android.os.Bundle;
import android.os.Message;
import com.google.android.maps.GeoPoint;
import com.google.android.maps.MapView;
import com.google.android.maps.Overlay;
public class BaloonOverlay extends Overlay {
public GeoPoint tapPoint;
public BaloonOverlay() {
super();
}
@Override
public boolean onTap(GeoPoint point, MapView mapView) {
tapPoint = point;
Message message = new Message();
message.arg1 = GmapsActivity.HANDLER_MESSAGE_SHOW_BALOON;
Bundle bundle = new Bundle();
//bundle.putString(GmapsActivity.HANDLER_MESSAGE_AUTHOR, "Serkan");
//bundle.putString(GmapsActivity.HANDLER_MESSAGE_NOTE, "Here is the baloon");
message.setData(bundle);
GmapsActivity.handler.sendMessage(message);
return super.onTap(point, mapView);
}
public GeoPoint getTapPoint() {
return tapPoint;
}
}
in the main activity i am using a handler:
public class GmapsActivity extends MapActivity implements OnClickListener{
public static final int HANDLER_MESSAGE_SHOW_BALOON = 1;
public static final int HANDLER_MESSAGE_HIDE_BALOON = 2;
public static final String HANDLER_MESSAGE_NOTE = "Note";
static BaloonOverlay noteOverlay;
static BaloonLayout noteBaloon;
...................
public void onCreate(Bundle savedInstanceState)
{
..........
}
static Handler handler = new Handler() {
@Override
public void handleMessage(Message msg) {
switch (msg.arg1) {
case HANDLER_MESSAGE_SHOW_BALOON:
//mapView.removeView(noteBaloon);
noteBaloon.setVisibility(View.VISIBLE);
((TextView)noteBaloon.findViewById(R.id.note_text)).setText(msg.getData().getString(HANDLER_MESSAGE_NOTE));
mc.animateTo(noteOverlay.getTapPoint());
mapView.addView(noteBaloon, new MapView.LayoutParams(100,100,noteOverlay.getTapPoint(),MapView.LayoutParams.BOTTOM_CENTER));
mapView.setEnabled(false);
break;
case HANDLER_MESSAGE_HIDE_BALOON:
noteBaloon.setVisibility(View.GONE);
mapView.setEnabled(true);
}
}
};
.................
//main job
public void getData0()
{
for(int i=0; i<jArray.length();i++){
JSONObject json = jArray.getJSONObject(i);
double d1 =json.getDouble("longtitude");
double d2 =json.getDouble("latitude");
//d3=json.getString("archeol_name");
point = new GeoPoint((int) (d2 * 1E6),
(int) (d1 * 1E6));
overlayItem0= new OverlayItem((GeoPoint) point, "Center", "Center");
itemizedoverlay0.addOverlay(overlayItem0);
}//for
mapOverlays.add(itemizedoverlay0);
mapOverlays = mapView.getOverlays();
mapView.invalidate();
mapView.getController().animateTo(point);
mc.setZoom(7);
LayoutInflater layoutInflater = (LayoutInflater) this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
noteOverlay = new BaloonOverlay();
noteBaloon = (BaloonLayout) layoutInflater.inflate(R.layout.baloon, null);
mapView.getOverlays().add(noteOverlay);
noteBaloon.findViewById(R.id.close_button).setOnClickListener(new BaloonLayout.BaloonOnClickListener());
}
What i want to do is to put d3(which is the name of each point retreived from my database) into the noteBaloon.The function getdata0 is called when i check a checkbox in order to put all these markers to the map.Also in tha noteBaloon there is a close button.When i click on it the baloon closes.But there is another problem.I want to have multiple baloons open.My code doesnt let me open a second one,i have to close the first one and then open a new one. Any ideas?????
Thanks a lot!!!!