我一直在努力解决这个问题几天,除了大量的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>
答案 0 :(得分:0)
以编程方式加载地图,
FragmentManager fm = getSupportFragmentManager(); SupportMapFragment supportMapFragment = SupportMapFragment.newInstance(); fm.beginTransaction().replace(R.id.mapContainer, supportMapFragment).commit();
在xml中:
<FrameLayout android:id="@+id/mapContainer" android:layout_width="match_parent" android:layout_height="match_parent"/>
答案 1 :(得分:0)
创建一个FrameLayout作为容器,以便在任何布局中保存地图片段 -
<FrameLayout
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent" />
然后以编程方式添加它 -
MapFragment mapFragment = MapFragment.newInstance();
mapFragment.getMapAsync(this);
getFragmentManager()
.beginTransaction()
.add(R.id.map, mapFragment)
.commit();
如果在片段内添加地图片段,请使用getChildFragmentManager()
。
如果您正在使用getSupportFragmentManager()
个实例,请使用SupportMapFragment
。
答案 2 :(得分:0)
How to put Google Maps V2 on a Fragment Using ViewPager
原来答案就在这里,对不起浪费人们的时间!
答案 3 :(得分:0)
这是我用来创建地图而不使用任何布局XML的代码。它来自一些帖子,每个帖子都是图片的重要组成部分,所以感谢所有这些作者。它设计为在支持类中运行,因此必须传入Activity。结果是一个自包含的FrameLayout,其中包含一个地图,因此可以将其添加到您应用中可能已有的任何布局中,允许你让地图只占据屏幕的一部分。
package pro.scanna.easycoder.android.handler;
import android.support.v4.app.FragmentTransaction;
import android.support.v7.app.AppCompatActivity;
import android.view.ViewGroup;
import android.widget.FrameLayout;
import com.google.android.gms.maps.CameraUpdateFactory;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.MapsInitializer;
import com.google.android.gms.maps.OnMapReadyCallback;
import com.google.android.gms.maps.SupportMapFragment;
import com.google.android.gms.maps.model.LatLng;
import pro.scanna.R;
public class ProgrammaticMap {
public void create(final AppCompatActivity activity, final ViewGroup parent) {
FrameLayout frame = new FrameLayout(activity);
frame.setId(R.id.reservedNamedId);
frame.setLayoutParams(new FrameLayout.LayoutParams(
FrameLayout.LayoutParams.MATCH_PARENT,
FrameLayout.LayoutParams.MATCH_PARENT));
parent.addView(frame);
FragmentTransaction transaction =
activity.getSupportFragmentManager().beginTransaction();
SupportMapFragment fragment = new SupportMapFragment();
transaction.add(frame.getId(), fragment);
transaction.commit();
try {
MapsInitializer.initialize(activity);
} catch (Exception e) {
e.printStackTrace();
}
fragment.getMapAsync(new OnMapReadyCallback() {
@Override
public void onMapReady(GoogleMap map) {
setupMap(map);
}
});
}
private void setupMap(final GoogleMap map) {
double latitude = 0; // set this
double longitude = 0; // set this too
float zoom = 17f; // or whatever, between 2 and 21 (approx)
map.setMapType(GoogleMap.MAP_TYPE_NORMAL);
map.animateCamera(CameraUpdateFactory.newLatLngZoom(
new LatLng(latitude, longitude), zoom), 1000,
new GoogleMap.CancelableCallback() {
@Override
public void onFinish() {
doneSetup();
}
@Override
public void onCancel() {
doneSetup();
}
});
map.setOnMapClickListener(new GoogleMap.OnMapClickListener()
{
@Override
public void onMapClick(LatLng location)
{
// Here when the map is tapped
}
});
}
private void doneSetup() {
// Do whatever comes next
}
}
帧的id需要单个资源。通过创建名为res/values/ids.xml
的资源文件来执行此操作,其中包含以下内容:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<item name="reservedNamedId" type="id"/>
</resources>