Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="utf-8"?>
- <android.support.v4.widget.NestedScrollView
- xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/backgroundColor"
- android:clickable="true"
- android:focusable="true"
- android:overScrollMode="never"
- android:scrollbars="vertical"
- android:fillViewport="true">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
- <RelativeLayout
- android:id="@+id/profile_top_section"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@color/colorWhite">
- <!-- User Data -->
- </RelativeLayout>
- <android.support.design.widget.TabLayout
- android:id="@+id/profile_tab_layout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"/>
- <android.support.v4.view.ViewPager
- android:id="@+id/profile_view_pager"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- </android.support.v4.view.ViewPager>
- </LinearLayout>
- </android.support.v4.widget.NestedScrollView>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement