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.

32 lines
1.2 KiB

<?xml version="1.0" encoding="utf-8"?>
<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="16dp"
android:orientation="vertical">
<ImageView
android:layout_gravity="top|center"
app:srcCompat="@drawable/headline_icon"/>
<TextView
android:text="@string/layout_uebersicht"/>
<Button
android:layout_width="match_parent"
android:onClick="onButtonLinearLayoutClick"
android:text="@string/linear_layout"/>
<Button
android:layout_width="match_parent"
android:onClick="onButtonTableLayoutClick"
android:text="@string/table_layout"/>
<Button
android:layout_width="match_parent"
android:onClick="onButtonRelativeLayoutClick"
android:text="@string/relative_layout"/>
<Button
android:layout_width="match_parent"
android:onClick="onButtonFrameLayoutClick"
android:text="@string/frame_layout"/>
<ImageView
android:layout_gravity="bottom|center"
app:srcCompat="@drawable/baseline_icon"/>
</GridLayout>