Advertisement
eirlis

Untitled

Dec 7th, 2016
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.58 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout 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:id="@+id/content_moximo_testing"
  6.    android:layout_width="match_parent"
  7.    android:layout_height="match_parent"
  8.    android:paddingBottom="@dimen/activity_vertical_margin"
  9.    android:paddingLeft="@dimen/activity_horizontal_margin"
  10.    android:paddingRight="@dimen/activity_horizontal_margin"
  11.    android:paddingTop="@dimen/activity_vertical_margin"
  12.    app:layout_behavior="@string/appbar_scrolling_view_behavior"
  13.    tools:context="org.bitbucket.a8wizards_team.moximotesting.MoximoTestingActivity"
  14.    tools:showIn="@layout/app_bar_moximo_testing">
  15.  
  16.     <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  17.        xmlns:app="http://schemas.android.com/apk/res-auto"
  18.        android:layout_width="match_parent"
  19.        android:layout_height="match_parent"
  20.        android:orientation="vertical">
  21.         <android.support.design.widget.TabLayout
  22.            android:id="@+id/sliding_tabs"
  23.            android:layout_width="match_parent"
  24.            android:layout_height="wrap_content"
  25.            app:tabMode="fixed" />
  26.  
  27.         <android.support.v4.view.ViewPager
  28.            android:id="@+id/view_pager"
  29.            android:layout_width="match_parent"
  30.            android:layout_height="0px"
  31.            android:layout_weight="1"
  32.            android:background="@android:color/white" />
  33.     </LinearLayout>
  34. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement