TEXT   48

to do list xml

Guest on 22nd August 2024 03:17:58 AM

  1. <!-- res/layout/activity_main.xml -->
  2. <?xml version="1.0" encoding="utf-8"?>
  3. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  4.     android:layout_width="match_parent"
  5.     android:layout_height="match_parent"
  6.     android:padding="16dp">
  7.  
  8.     <EditText
  9.         android:id="@+id/taskInput"
  10.         android:layout_width="match_parent"
  11.         android:layout_height="wrap_content"
  12.         android:hint="Enter a new task"
  13.         android:inputType="text"/>
  14.  
  15.     <Button
  16.         android:id="@+id/addButton"
  17.         android:layout_width="wrap_content"
  18.         android:layout_height="wrap_content"
  19.         android:layout_below="@id/taskInput"
  20.         android:text="Add Task"/>
  21.  
  22.     <ListView
  23.         android:id="@+id/taskList"
  24.         android:layout_width="match_parent"
  25.         android:layout_height="wrap_content"
  26.         android:layout_below="@id/addButton"
  27.         android:layout_above="@id/editButton"/>
  28.  
  29.     <Button
  30.         android:id="@+id/editButton"
  31.         android:layout_width="wrap_content"
  32.         android:layout_height="wrap_content"
  33.         android:layout_alignParentBottom="true"
  34.         android:text="Edit Task"/>
  35.  
  36.     <Button
  37.         android:id="@+id/deleteButton"
  38.         android:layout_width="wrap_content"
  39.         android:layout_height="wrap_content"
  40.         android:layout_toRightOf="@id/editButton"
  41.         android:layout_alignParentBottom="true"
  42.         android:text="Delete Task"/>
  43. </RelativeLayout>

Raw Paste


Login or Register to edit or fork this paste. It's free.