【发布时间】:2016-06-18 11:50:15
【问题描述】:
这几天我一直在尽力解决这个问题,除了大量的 Google 搜索之外,我还阅读了其他 StackOverFlow 帖子的建议。我认为主要问题是“getMap()”方法已被弃用,为“getMapAsync()”让路,而使用后者的解释不符合我的使用方式。因此,考虑到这一点,我认为此时一个问题也可能与其他问题相关。
基本上,到目前为止,我已经用按钮创建了一个菜单,允许用户在片段之间切换。这些片段之一需要是一个谷歌地图,它将在按下按钮时启动,保持按钮在视图中。
我的 MapsActivity 代码来自:-http://www.joellipman.com/articles/google/android/application-development/android-os-add-googlemap-as-fragment.html - 但如前所述,不推荐使用 getMap()。我也看了 -How to put Google Maps V2 on a Fragment Using ViewPager - 但问题是一样的。
MainActivity...
public class MainActivity extends AppCompatActivity {
Button mapMenuItem, postcodeMenuItem, nameMenuItem, recentMenuItem;
ConnectivityManager conMgr;
NetworkInfo networkInfo;
FrameLayout fragmentContainer;
NameFragment nf;
String longiString, latiString;
public static FragmentManager fragmentManager;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mapMenuItem = (Button) findViewById(R.id.mapButton);
postcodeMenuItem = (Button) findViewById(R.id.postcodeButton);
nameMenuItem = (Button) findViewById(R.id.nameButton);
recentMenuItem = (Button) findViewById(R.id.recentButton);
fragmentContainer = (FrameLayout) findViewById(R.id.fragmentContainer);
fragmentManager = getFragmentManager();
StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();
StrictMode.setThreadPolicy(policy);
}
public void searchMap(View v) {
android.support.v4.app.FragmentManager fm = getSupportFragmentManager();
android.support.v4.app.FragmentTransaction ft = fm.beginTransaction();
MapFragment mf = new MapFragment();
ft.replace(R.id.fragmentContainer, mf);
ft.commit();
mapMenuItem.setBackgroundColor(Color.parseColor("#fece35"));
nameMenuItem.setBackgroundColor(Color.parseColor("#eff169"));
postcodeMenuItem.setBackgroundColor(Color.parseColor("#eff169"));
recentMenuItem.setBackgroundColor(Color.parseColor("#eff169"));
}
MapFragment...
public class MapFragment extends Fragment {
MapView mapView;
GoogleMap gMap;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View v = inflater.inflate(R.layout.map_fragment, container, false);
mapView = (MapView) v.findViewById((R.id.mapView));
mapView.onCreate(savedInstanceState);
mapView.onResume();
try{
MapsInitializer.initialize(getActivity().getApplicationContext());
}catch (Exception e){
e.printStackTrace();
}
gMap = mapView.getMap();
double latitude = 17.385044;
double longitude = 78.486671;
//create marker
MarkerOptions marker = new MarkerOptions().position(
new LatLng(latitude, longitude)).title("Hello Maps");
//changing marker icon
marker.icon(BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.HUE_ROSE));
//adding marker
gMap.addMarker(marker);
CameraPosition cameraPosition = new CameraPosition.Builder().target(
new LatLng(17.385044, 78.486671)).zoom(12).build();
gMap.animateCamera(CameraUpdateFactory.newCameraPosition(cameraPosition));
//Perform any camera updates
return v;
}
@Override
public void onResume() {
super.onResume();
mapView.onResume();
}
@Override
public void onPause() {
super.onPause();
mapView.onPause();
}
@Override
public void onDestroy() {
super.onDestroy();
mapView.onDestroy();
}
@Override
public void onLowMemory() {
super.onLowMemory();
mapView.onLowMemory();
}
}
MapLayout...
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<com.google.android.gms.maps.MapView
android:id="@+id/mapView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:apiKey="@string/google_maps_key"
android:clickable="false"/>
AcivityLayout...
</LinearLayout>
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#72a972"
android:orientation="vertical"
android:paddingBottom="0dp"
android:paddingLeft="0dp"
android:paddingRight="0dp"
android:paddingTop="0dp"
tools:context="uk.ac.mmu.webmd.foodhygieneapp.MainActivity">
<RelativeLayout
android:id="@+id/rel_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="0dp"
android:layout_marginLeft="0dp"
android:layout_marginRight="0dp"
android:layout_marginTop="0dp"
android:background="#eff169"
android:gravity="center_horizontal">
<Button
android:id="@+id/mapButton"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:background="#eff169"
android:onClick="searchMap"
android:text="@string/MapsButton" />
<Button
android:id="@+id/nameButton"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toEndOf="@+id/mapButton"
android:background="#eff169"
android:onClick="nameMenu"
android:text="@string/NameButton" />
<Button
android:id="@+id/postcodeButton"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toStartOf="@+id/recentButton"
android:background="#eff169"
android:onClick="postcodeMenu"
android:text="@string/PostcodeButton" />
<Button
android:id="@+id/recentButton"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_alignParentTop="true"
android:background="#eff169"
android:onClick="recentMenu"
android:text="@string/RecentButton" />
</RelativeLayout>
<FrameLayout
android:id="@+id/fragmentContainer"
android:layout_width="match_parent"
android:layout_height="match_parent">
</FrameLayout>
</LinearLayout>
【问题讨论】:
-
你的问题是什么?
标签: android google-maps fragment deprecated