- <!-- res/layout/activity_main.xml -->
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:padding="16dp">
- <EditText
- android:id="@+id/taskInput"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:hint="Enter a new task"
- android:inputType="text"/>
- <Button
- android:id="@+id/addButton"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_below="@id/taskInput"
- android:text="Add Task"/>
- <ListView
- android:id="@+id/taskList"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_below="@id/addButton"
- android:layout_above="@id/editButton"/>
- <Button
- android:id="@+id/editButton"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentBottom="true"
- android:text="Edit Task"/>
- <Button
- android:id="@+id/deleteButton"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_toRightOf="@id/editButton"
- android:layout_alignParentBottom="true"
- android:text="Delete Task"/>
- </RelativeLayout>