我的android应用程序正在使用Google Map API v1 key
并且它运行正常。现在,我需要将我的代码交给我的教授,并在新台式机上向他展示工作演示。这意味着,现在我不能再使用Google Map API v1 key
,因此我需要对Google Map API key v1
的代码进行一些更改,以便它可以与Google Map API v2 key
一起使用。
我正试图在top half of the android screen
和in my bottom half, I am trying to show the list view
上显示谷歌地图。
下面的代码适用于Google Map API v1 key
,现在我需要在下面的代码中进行更改以使其与Google Map API v2 key
一起使用,这意味着我需要在Android的上半部分显示Google Map屏幕。
private GoogleMap map;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Bundle bundle = getIntent().getExtras();
user_id = bundle.getString("USERID");
LayoutInflater inflater = LayoutInflater.from(this);
scrollView = (MyHorizontalScrollView) inflater.inflate(R.layout.horz_scroll_with_list_menu, null);
setContentView(scrollView);
menu = inflater.inflate(R.layout.horz_scroll_menu, null);
app = inflater.inflate(R.layout.horz_scroll_app, null);
ViewGroup tabBar = (ViewGroup) app.findViewById(R.id.tabBar);
initViewMembers(app); // I need to modify something in this method only
locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
initMyLocationOverview();
registerLocationListener();
Button button1 = (Button) menu.findViewById(R.id.button1);
Button button2 = (Button) menu.findViewById(R.id.button2);
useLastKnownLocation(locationManager);
final View[] children = new View[] { menu, app };
// Scroll to app (view[1]) when layout finished.
int scrollToViewIdx = 1;
scrollView.initViews(children, scrollToViewIdx,
new SizeCallbackForMenu(btnSlide));
}
这是我应该修改的方法。如何修改以下方法以使其适用于Google Map V2
/**
* Initialize the map with default settings
*
*/
private void initViewMembers(View app2) {
mapView = (MapView) app2.findViewById(R.id.mapView);
//map = ((MapFragment) getFragmentManager().findFragmentById(R.id.map)).getMap();
listView = (ListView) app2.findViewById(R.id.mylist);
mapView.setBuiltInZoomControls(true);
mapController = mapView.getController();
mapController.setZoom(14);
mapView.setStreetView(true);
}
如果您在上面initViewMembers method
中看到我正在使用app2视图来获取mapView ID,然后在其他地方使用它。如果我要使用Google Map API v2 key
,那么我需要使用我在下一行中提到的MapFragment
,我已经注释掉了。现在我想知道如果我使用map id
app2 view
获取Google Map API key v2
所以我的问题是如何从视图中获取MapFragment的东西?
以下是我的horz_scroll_app xml file
,其中包含Google Map v2
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/app"
android:layout_width="1dp"
android:layout_height="1dp"
android:layout_margin="2px"
android:orientation="vertical"
android:padding="2px" >
<LinearLayout
android:id="@+id/tabBar"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<ImageView
android:id="@+id/BtnSlide"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="0px"
android:padding="0px"
android:src="@drawable/button" />
</LinearLayout>
<!--
<com.google.android.maps.MapView
android:id="@+id/mapView"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:apiKey="0s_fADEBtq0-j_teQ1j-yaoDAivoHHtwN81rJ-g"
android:clickable="true"
android:state_enabled="true" />
-->
<fragment
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
class="com.google.android.gms.maps.MapFragment" />
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="0.8"
android:orientation="horizontal" >
<ListView
android:id="@+id/mylist"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1" >
</ListView>
</LinearLayout>
</LinearLayout>
我在上面的initViewMembers方法中无法做到这一点 -
map = ((MapFragment) app2.findFragmentById(R.id.map)).getMap();
我正在寻找类似的东西。
答案 0 :(得分:6)
在xml中添加此内容
<fragment
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
class="com.google.android.gms.maps.SupportMapFragment"/>
这是你获取对象引用的方法
GoogleMap mMap = ((SupportMapFragment) getSupportFragmentManager()
.findFragmentById(R.id.map)).getMap();
1)您需要将google-play-services_lib导入您的工作区。 2)添加android-support-v4.jar 3)在你的开发者控制台激活android google maps v2并获取api密钥。 4)为清单
添加以下权限<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
<!--
The following two permissions are not required to use
Google Maps Android API v2, but are recommended.
-->
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<permission
android:name="YOURPACKAGE.permission.MAPS_RECEIVE"
android:protectionLevel="signature" />
<uses-permission android:name="YOURPACKAGE.permission.MAPS_RECEIVE" />
答案 1 :(得分:0)
I did like this..
public class CustomSupportMapFragment extends SupportMapFragment {
private GoogleMap map;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup view,
Bundle savedInstance) {
View layout = super.onCreateView(inflater, view, savedInstance);
FrameLayout frameLayout = new FrameLayout(getActivity());
frameLayout.setBackgroundColor(getResources().getColor(
android.R.color.transparent));
((ViewGroup) layout).addView(frameLayout, new ViewGroup.LayoutParams(
LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT));
map=getMap();
return layout;
}
/*public static CustomSupportMapFragment newInstance(GoogleMapOptions op) {
CustomSupportMapFragment frag = new CustomSupportMapFragment();
return frag;
}
*/
public GoogleMap getMapInstance() {
// TODO Auto-generated method stub
return map;
}
}
xml..
<fragment
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="300dp"
class="com.maps.utils.CustomSupportMapFragment" />