Recently installed Visual Studio 2015 and Xamarin for Android development. Latest releases.
GridView has no options for column span and relative view has no options for positioning.
<?xml version="1.0" encoding="utf-8"?>
<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:useDefaultMargins="true"
android:alignmentMode="alignBounds"
android:columnOrderPreserved="false"
android:columnCount="7">
<TextView
android:text="Lathe Control by Wire"
android:textStyle="bold|italic"
android:layout_gravity="center_horizontal"
android:layout_columnSpan="7" <!-- attribute not declared -->
android:textAppearance="?android:attr/textAppearanceLarge"
android:id="@+id/textView1" />
</GridLayout>
Thanks