我正在尝试在 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 中构建,但我在 Visual Studio 中收到此错误:
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 中工作,但在 Visual Studio 中失败。