我想在我的应用中显示谷歌地图中的一些点。所以我尝试了下面的代码来实现这个目标:
public class MessageDetailsActivity extends FragmentActivity implements OnMapReadyCallback {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_message_details);
SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager()
.findFragmentById(R.id.googleMap);
mapFragment.getMapAsync(this);
}
@Override
public void onMapReady(GoogleMap googleMap) {
Long latitude = getIntent().getLongExtra("latitude",0);
Long longtitude = getIntent().getLongExtra("longtitude", 0);
googleMap.addMarker(new MarkerOptions().position(new LatLng(latitude, longtitude)).title("Marker"));
}
}
这是我的activity_message_details.xml文件:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/datetime"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<fragment
android:id="@+id/googleMap"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</android.support.constraint.ConstraintLayout>
我在setContectView部分出现Error inflating class fragment
错误。我知道很多次问过类似的问题,我在stackoverflow中检查了所有关于这个问题的主题,但是无法摆脱它。
还有一件事。我可以在弹出窗口中显示带有标记的地图,而不是打开新活动。我还需要添加一些文本视图来弹出。有可能吗?
答案 0 :(得分:0)
GoogleMap mMap;
SupportMapFragment mMapFragment;
if (mMap == null) {
mMapFragment= (SupportMapFragment)getSupportFragmentManager()
.findFragmentById(R.id.googleMap);
mMap = mMapFragment.getMap();
if (mMap != null) {
}
}
答案 1 :(得分:0)
其实我的问题是关于API密钥。向清单文件添加API密钥后,在应用程序标记之外解决了这个问题:
<meta-data android:name="com.google.android.maps.v2.API_KEY"
android:value="AIzaSyCv0EKZ7WxirSW0V-lrUI6zKt-8hl5QwRU" />