MonoDroid でいくつかのレイアウト属性を使用しようとしていますが、ビルドされません:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_marginStart="16dip"
android:layout_marginEnd="16dip" />
これは Eclipse ADT でビルドされますが、ビジュアル スタジオで次のエラーが発生します。
No resource identifier found for attribute 'layout_marginStart' in package 'android'
No resource identifier found for attribute 'layout_marginEnd' in package 'android'
このプロジェクトは、Android 4.1、API レベル 16 をターゲットにするように設定されています。
Button のような非レイアウト ウィジェットで layout_margin* 属性を使用できますが、それらはレイアウト ウィジェット (RelativeLayout、LinearLayout など) 用にビルドしません。繰り返しますが、Eclipse ADT ではすべてが機能しますが、ビジュアル スタジオでは失敗します。