下面的行不會編譯:無法解析:FragmentManager.FindFragmentById <MapFragment>
var mapFragment = FragmentManager.FindFragmentById<MapFragment>(Resource.Id.map);
Error CS0120 An object reference is required for the non-static field, method, or property 'FragmentManager.FindFragmentById(int)'
我axml如下:
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/map"
android:layout_width="200dp"
android:layout_height="200dp"
class="com.google.android.gms.maps.MapFragment" />
我引用下面documentation:
有什麼建議嗎?
在哪個上下文中,你是否執行代碼來獲取片段? –