我在FrameLayout中以编程方式创建片段,并且我正在使用googlemap显示地图。当我第一次运行它时,它显示地图。问题是,当我第二次运行它时,它显示我一个空白页面。你们有没有解决这个问题的方法?感谢
我的xml文件是res / layout / activity_location
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:map="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/map_layout"
android:layout_width="0dp"
android:layout_height="400dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent">
</FrameLayout>
脚本
private void viewLocation()
{
setTitle("Location");
inflateView(frame, R.layout.activity_location);
final String TAG = "map";
FragmentManager fragmentManager = getSupportFragmentManager();
FragmentTransaction transaction = fragmentManager.beginTransaction();
transaction.add(R.id.map_layout, mapFragment = SupportMapFragment.newInstance(), TAG);
transaction.commit();
mapFragment.getMapAsync(this);
}