Praktika/activity_main.xml

27 lines
950 B
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<TextView
android:id="@+id/lifecycleTextView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:textSize="18sp"
android:padding="16dp"
android:text="Lifecycle events will be displayed here" />
<Button
android:id="@+id/clearHistoryButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Clear History"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="16dp"
android:onClick="onClearHistoryClicked" />
</RelativeLayout>