Shvet

Untitled

Jan 21st, 2016
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 KB | None | 0 0
  1. Activity ::
  2. <?xml version="1.0" encoding="utf-8"?>
  3. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:orientation="vertical">
  7.  
  8. <android.support.v7.widget.RecyclerView
  9. android:id="@+id/jobs_list"
  10. android:layout_width="match_parent"
  11. android:layout_height="match_parent" />
  12. </LinearLayout>
  13.  
  14. Footer::
  15. <?xml version="1.0" encoding="utf-8"?>
  16. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  17. android:layout_width="match_parent"
  18. android:layout_height="match_parent"
  19. android:orientation="vertical">
  20.  
  21. <ProgressBar
  22. android:id="@+id/footer"
  23. android:layout_width="60dp"
  24. android:layout_height="60dp"
  25. android:layout_gravity="center_horizontal" />
  26. </LinearLayout>
  27.  
  28. Header:::
  29. <?xml version="1.0" encoding="utf-8"?>
  30. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  31. android:layout_width="match_parent"
  32. android:layout_height="match_parent"
  33. android:orientation="vertical">
  34.  
  35. <TextView
  36. android:id="@+id/header_text_view"
  37. android:layout_width="match_parent"
  38. android:layout_height="wrap_content"
  39. android:gravity="center"
  40. android:textAllCaps="false"
  41. android:textSize="45sp" />
  42. </LinearLayout>
  43.  
  44. DATA:::
  45. <?xml version="1.0" encoding="utf-8"?>
  46. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  47. android:layout_width="match_parent"
  48. android:layout_height="match_parent"
  49. android:orientation="vertical">
  50.  
  51. <TextView
  52. android:id="@+id/data_text_view"
  53. android:layout_width="match_parent"
  54. android:layout_height="wrap_content" />
  55. </LinearLayout>
Add Comment
Please, Sign In to add comment