如何从显示Google地图的列表视图中打开活动?

时间:2015-01-28 15:48:13

标签: android list google-maps onclicklistener

我是构建Android应用程序的新手,我一直在尝试从列表中的一行打开一个新活动,其中每个活动都显示每行的谷歌地图。到目前为止,我已经设法通过单击该行来打开一个新活动,但我不知道如何在其上插入Google地图。我已经下载了我的Google API密钥并将其保存在我的AndroidManifest上。

我的代码看起来像这样打开列表:

package com.MaheshGurung.androidapp;

import android.app.ListActivity;



import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.ListView;

public class secondActivity extends ListActivity {

@Override

 public void onCreate(Bundle savedInstanceState) {
     super.onCreate(savedInstanceState);
     // storing string resources into Array

     String []Buildings = getResources().getStringArray(R.array.Buildings);

     // Binding resources Array to ListAdapter
     this.setListAdapter(new ArrayAdapter<String>(this, R.layout.screen1, R.id.listbuilding, Buildings));

}
 protected void onListItemClick(ListView lv, View v, int position, long id){
     super.onListItemClick(lv, v, position, id);

Intent intent = new Intent();
intent.setClass(this, ListSelect.class);
intent.putExtra("position", position);
// Or / And
intent.putExtra("id", id);
startActivity(intent);

 }
@Override
protected void onPause() {
    // TODO Auto-generated method stub
    super.onPause();
    finish();
}

}

为每行打开新活动的代码如下所示:

package com.MaheshGurung.androidapp;

import android.app.ListActivity;



import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.ListView;

public class secondActivity extends ListActivity {

@Override

 public void onCreate(Bundle savedInstanceState) {
     super.onCreate(savedInstanceState);
     // storing string resources into Array

     String []Buildings = getResources().getStringArray(R.array.Buildings);

     // Binding resources Array to ListAdapter
     this.setListAdapter(new ArrayAdapter<String>(this, R.layout.screen1, R.id.listbuilding, Buildings));

}
 protected void onListItemClick(ListView lv, View v, int position, long id){
     super.onListItemClick(lv, v, position, id);

Intent intent = new Intent();
intent.setClass(this, ListSelect.class);
intent.putExtra("position", position);
// Or / And
intent.putExtra("id", id);
startActivity(intent);

 }
@Override
protected void onPause() {
    // TODO Auto-generated method stub
    super.onPause();
    finish();
}

}

和.xml文件看起来像

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/my_textview"/>
<fragment
    android:id="@+id/map"
    android:name="com.google.android.gms.maps.SupportMapFragment"
    android:layout_below="@+id/my_textview"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    />

</RelativeLayout>

知道在哪里为谷歌地图或任何其他建议的方法编写代码会非常有帮助。

1 个答案:

答案 0 :(得分:0)

您需要做的是两件事:

  1. 当您单击ListView项时,它需要将信息传递给第二个活动。
  2. 第二项活动需要接收说明,并加载相应的地图。
  3. 顺便说一句,如果您希望将列表放在与地图相同的屏幕上(对于平板电脑而言),这可能会更好地使用片段,那么它会使它更容易。

    对于第一个,有很多来源。我会指出你这个问题:How do I pass data between Activities in Android application?。我看到你已经有类似的代码了。我建议而不是传递位置,传递lat / lng / zoom级别或类似的东西,所以地图不需要弄清楚任何东西。这样可以更容易地在其他组件中重复使用。

    对于第二个,您应该参考Google Maps API,其中显示了如何更改视图。实际上,您要做的是更改摄像机位置,它们提供以下示例代码。只需在第二个活动中接收lat / lng边界,获取API中指定的mMap参考,并将其传递类似于下面的管理方式。

    private GoogleMap mMap;
    // Create a LatLngBounds that includes Australia.
    private LatLngBounds AUSTRALIA = new LatLngBounds(
      new LatLng(-44, 113), new LatLng(-10, 154));
    
    // Set the camera to the greatest possible zoom level that includes the
    // bounds
    mMap.moveCamera(CameraUpdateFactory.newLatLngBounds(AUSTRALIA, 0));