本文整理了Java中com.google.android.gms.maps.SupportMapFragment.setRetainInstance()
方法的一些代码示例,展示了SupportMapFragment.setRetainInstance()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。SupportMapFragment.setRetainInstance()
方法的具体详情如下:
包路径:com.google.android.gms.maps.SupportMapFragment
类名称:SupportMapFragment
方法名:setRetainInstance
暂无
代码示例来源:origin: commonsguy/cw-omnibus
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
if (readyToGo()) {
setContentView(R.layout.activity_main);
SupportMapFragment mapFrag=
(SupportMapFragment)getSupportFragmentManager().findFragmentById(R.id.map);
if (savedInstanceState == null) {
needsInit=true;
}
mapFrag.setRetainInstance(true);
mapFrag.getMapAsync(this);
}
}
代码示例来源:origin: googlemaps/android-samples
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.basic_demo);
SupportMapFragment mapFragment =
(SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map);
if (savedInstanceState == null) {
// First incarnation of this activity.
mapFragment.setRetainInstance(true);
}
mapFragment.getMapAsync(this);
}
代码示例来源:origin: Michenux/YourAppIdea
@Override
public void onViewCreated(View view, Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
SupportMapFragment mapFragment = getMapFragment();
if (BuildConfig.DEBUG) {
Log.d(YourApplication.LOG_TAG, "simpleMapFragment.onViewCreated - mapFragment = " + mapFragment);
}
if (mapFragment == null) {
mapFragment = new SupportMapFragment();
mapFragment.setRetainInstance(true);
getChildFragmentManager().beginTransaction().replace(R.id.simplemap, mapFragment, null).commit();
}
mapFragment.getMapAsync(this);
}
内容来源于网络,如有侵权,请联系作者删除!