<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:layout_gravity="center"
    android:gravity="center"
    android:orientation="vertical"
    android:padding="10dp">

    <Button
        android:id="@+id/sensor_demo"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:onClick="onDemoSelected"
        android:text="@string/sensor_demo" />

    <Button
        android:id="@+id/vibration_demo"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:onClick="onDemoSelected"
        android:text="@string/vibration_demo" />

    <Button
        android:id="@+id/rotation_demo"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:onClick="onDemoSelected"
        android:text="@string/rotation_demo" />

    <Button
        android:id="@+id/home_demo"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:onClick="onDemoSelected"
        android:text="@string/home_demo" />

    <Button
        android:id="@+id/secure_window_demo"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:onClick="onDemoSelected"
        android:text="@string/secure_window_demo" />

    <Button
        android:id="@+id/permissions_demo"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:onClick="onDemoSelected"
        android:text="@string/permissions_demo" />

    <Button
        android:id="@+id/latency_demo"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:onClick="onDemoSelected"
        android:text="@string/latency_demo" />

    <Button
        android:id="@+id/stylus_demo"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:onClick="onDemoSelected"
        android:text="@string/stylus_demo" />

</LinearLayout>