You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1.4 KiB

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/app_background"
android:gravity="center"
android:id="@+id/tableLayout"
>
<TableRow>
<TextView android:text="@string/layout_uebersicht"
android:layout_span="4"
android:padding="20dp"/>
</TableRow>
<TableRow
android:padding="8dp">
<ImageView app:srcCompat="@drawable/android"/>
<Button android:text="@string/linear_layout"
android:onClick="onButtonLinearLayoutClick"/>
<ImageView app:srcCompat="@drawable/android" />
<Button android:text="@string/relative_layout"
android:onClick="onButtonRelativeLayoutClick"/>
</TableRow>
<TableRow
android:layout_width="fill_parent"
android:gravity="center_vertical"
android:padding="8dp">
<ImageView app:srcCompat="@drawable/android"/>
<Button android:text="@string/frame_layout"
android:onClick="onButtonFrameLayoutClick"/>
<ImageView app:srcCompat="@drawable/android" />
<Button android:text="@string/grid_layout"
android:onClick="onButtonGridLayoutClick"/>
</TableRow>
</TableLayout>