Advertisement
GeorgePashev_88

UpdateDelete Layout

Apr 23rd, 2024 (edited)
793
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.94 KB | Source Code | 0 0
  1.  
  2.  
  3. <?xml version="1.0" encoding="utf-8"?>
  4. <LinearLayout
  5.    android:layout_width="match_parent"
  6.    android:layout_height="match_parent"
  7.    android:orientation="vertical"
  8.    xmlns:android="http://schemas.android.com/apk/res/android">
  9.     <EditText
  10.        android:layout_width="match_parent"
  11.        android:layout_height="wrap_content"
  12.        android:id="@+id/editName"
  13.        android:hint="Enter Name"
  14.        android:inputType="textPersonName"></EditText>
  15.     <EditText
  16.        android:layout_width="match_parent"
  17.        android:layout_height="wrap_content"
  18.        android:id="@+id/editPhone"
  19.        android:hint="Enter Phone"
  20.        android:inputType="phone"></EditText>
  21.     <EditText
  22.        android:layout_width="match_parent"
  23.        android:layout_height="wrap_content"
  24.        android:id="@+id/editEmail"
  25.        android:hint="Enter E-mail"
  26.        android:inputType="textEmailAddress"></EditText>
  27.     <EditText
  28.        android:layout_width="match_parent"
  29.        android:layout_height="wrap_content"
  30.        android:id="@+id/editAddress"
  31.        android:hint="Enter Address"
  32.        android:inputType="textPostalAddress"></EditText>
  33.     <Button
  34.        android:layout_width="match_parent"
  35.        android:layout_height="wrap_content"
  36.        android:id="@+id/btnUpdate"
  37.        android:text="Update"
  38.        ></Button>
  39.     <Button
  40.        android:layout_width="match_parent"
  41.        android:layout_height="wrap_content"
  42.        android:id="@+id/btnDelete"
  43.        android:text="Delete"
  44.        ></Button>
  45.     <Button
  46.        android:layout_width="match_parent"
  47.        android:layout_height="wrap_content"
  48.        android:id="@+id/btnShowMap"
  49.        android:text="Show Address On Map"
  50.        ></Button>
  51.     <Button
  52.        android:layout_width="match_parent"
  53.        android:layout_height="wrap_content"
  54.        android:id="@+id/btnShowQr"
  55.        android:text="Show QR Code"
  56.        ></Button>
  57.  
  58. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement