Google Maps
でアプリケーションをコーディングしましたが、次のXamarin
エラーが発生しています。
Android.Views.InflateException: バイナリ XML ファイルの行 #1: クラス フラグメントの拡張中にエラーが発生しました
次のコード行を実行すると、このエラーが発生します。
SetContentView(Resource.Layout.MapWithOverlayLayout);
ここに私のMapWithOverlayLayout.axml
レイアウトファイルがあります:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<fragment class="SimpleMapDemo.MapWithMarkersActivity"
android:id="@+id/mapWithOverlay"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</LinearLayout>
名前空間は次のように呼ばれます。SimpleMapDemo
これが私のクラス宣言です:
public class MapWithMarkersActivity : Android.Support.V4.App.FragmentActivity
オブジェクトを使用しSupportMapFragment
て Google マップを表示しています
このコードを機能させるために助けてもらえますか?