Advertisement
Guest User

Untitled

a guest
Jan 14th, 2016
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 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:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:paddingBottom="@dimen/activity_vertical_margin"
  8. android:paddingLeft="@dimen/activity_horizontal_margin"
  9. android:paddingRight="@dimen/activity_horizontal_margin"
  10. android:paddingTop="@dimen/activity_vertical_margin"
  11. android:orientation="vertical"
  12. android:background="@drawable/a"
  13. android:padding="10dp"
  14. app:layout_behavior="@string/appbar_scrolling_view_behavior"
  15. tools:context="com.example.hosam.hosamapp.login"
  16. tools:showIn="@layout/activity_login">
  17.  
  18. <TextView
  19. android:text="UserName :"
  20. android:layout_width="wrap_content"
  21. android:layout_height="wrap_content" />
  22. <EditText
  23. android:id="@+id/etusername"
  24. android:layout_marginTop="10dp"
  25. android:layout_width="match_parent"
  26. android:layout_height="wrap_content" />
  27. <TextView
  28. android:text="Password :"
  29. android:layout_width="wrap_content"
  30. android:layout_height="wrap_content" />
  31. <EditText
  32. android:id="@+id/epassword"
  33. android:layout_marginTop="10dp"
  34. android:layout_width="match_parent"
  35. android:layout_height="wrap_content" />
  36. <Button
  37. android:layout_width="match_parent"
  38. android:id="@+id/blogin"
  39. android:text="LogIn"
  40. android:inputType="textPassword"
  41. android:layout_height="wrap_content" />
  42. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement