我有一个 xml 名称 layout.xml。我的问题是如何在运行时给它充气?
LayoutInflater mInflater=(LayoutInflater)HomeActivity.this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
view = mInflater.inflate(R.layout.fake,null, false);
maplayout.addView(view);
由于视图没有“findFragmentById”,地图使用该“findFragmentById”进行初始化
map=((SupportMapFragment)getSupportFragmentManager().findFragmentById(R.id.map)).getMap();
请帮忙 !!
布局.xml
<fragment
android:id="@+id/map"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
class="com.google.android.gms.maps.SupportMapFragment" />