如何在点击地图叠加时显示弹出窗口?

时间:2010-03-04 13:41:21

标签: android google-maps

我想显示一个包含一些数据的自定义图片,同时点击我在Android中添加到谷歌地图的地图叠加层。

任何人都可以指导我如何创建自定义图片或要在谷歌地图上显示一些数据的东西?

有些人告诉我去自定义视图,但我不知道他们。

2 个答案:

答案 0 :(得分:7)

This project演示了如何在地图顶部添加弹出式面板(与Toast不同)。

答案 1 :(得分:3)

要创建显示图像和某些文本的自定义Toast消息,请使用此Java代码。

LayoutInflater inflater = getLayoutInflater();
View layout = inflater.inflate(R.layout.toast_layout, (ViewGroup) findViewById(R.id.toast_layout_root));

TextView text = (TextView) layout.findViewById(R.id.text);

text.setText(content);
ImageView image = (ImageView) layout.findViewById(R.id.image);
image.setImageBitmap(bmImg);


Toast toast = new Toast(getApplicationContext());
toast.setGravity(Gravity.CENTER_VERTICAL, 0, 0);
toast.setDuration(Toast.LENGTH_LONG);
toast.setView(layout);
toast.show();

和此布局文件

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
          android:id="@+id/toast_layout_root"
          android:orientation="horizontal"
          android:layout_width="fill_parent"
          android:layout_height="fill_parent"
          android:padding="10dp"
          android:background="#DAAA"
          >
<ImageView android:id="@+id/image"
           android:layout_width="40dp"
           android:layout_height="40dp"
           android:layout_marginRight="10dp"
           />
<TextView android:id="@+id/text"
          android:layout_width="wrap_content"
          android:layout_height="fill_parent"
          android:textColor="#FFF"
          />
</LinearLayout>