Advertisement
Guest User

Untitled

a guest
Mar 6th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <android.support.v4.widget.NestedScrollView
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:app="http://schemas.android.com/apk/res-auto"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:background="@color/backgroundColor"
  8. android:clickable="true"
  9. android:focusable="true"
  10. android:overScrollMode="never"
  11. android:scrollbars="vertical"
  12. android:fillViewport="true">
  13.  
  14. <LinearLayout
  15. android:layout_width="match_parent"
  16. android:layout_height="wrap_content"
  17. android:orientation="vertical">
  18.  
  19. <RelativeLayout
  20. android:id="@+id/profile_top_section"
  21. android:layout_width="match_parent"
  22. android:layout_height="wrap_content"
  23. android:background="@color/colorWhite">
  24.  
  25. <!-- User Data -->
  26.  
  27.  
  28. </RelativeLayout>
  29.  
  30.  
  31.  
  32. <android.support.design.widget.TabLayout
  33. android:id="@+id/profile_tab_layout"
  34. android:layout_width="match_parent"
  35. android:layout_height="wrap_content"/>
  36.  
  37.  
  38. <android.support.v4.view.ViewPager
  39. android:id="@+id/profile_view_pager"
  40. android:layout_width="match_parent"
  41. android:layout_height="match_parent">
  42.  
  43. </android.support.v4.view.ViewPager>
  44.  
  45. </LinearLayout>
  46.  
  47.  
  48.  
  49. </android.support.v4.widget.NestedScrollView>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement