Advertisement
Guest User

HomePage

a guest
Apr 25th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:orientation="vertical"
  7. tools:context="example.uuj.employeerecords.EmployeeHomePage">
  8.  
  9. <Button
  10. android:id="@+id/btnAddEmployee"
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. android:onClick="onClickAddEmployee"
  14. android:text="Add Employee" />
  15.  
  16. <Button
  17. android:id="@+id/btnviewall"
  18. android:layout_width="match_parent"
  19. android:layout_height="wrap_content"
  20. android:text="View All" />
  21.  
  22. <Button
  23. android:id="@+id/btndelete"
  24. android:layout_width="match_parent"
  25. android:layout_height="wrap_content"
  26. android:text="Delete Employee" />
  27. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement