Blame view

app/src/main/res/layout/activity_pedometer.xml 1.52 KB
7f095a929   chudinhbka@gmail.com   Create GIT Project
1
2
3
4
5
6
  <?xml version="1.0" encoding="utf-8"?>
  <RelativeLayout
      xmlns:android="http://schemas.android.com/apk/res/android"
      xmlns:tools="http://schemas.android.com/tools"
      xmlns:app="http://schemas.android.com/apk/res-auto"
      android:layout_width="match_parent"
cf00f22ab   Dinh Chu   update resource a...
7
8
      android:layout_height="match_parent"
      android:background="@drawable/bg">
7f095a929   chudinhbka@gmail.com   Create GIT Project
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  
          <include layout="@layout/layout_toolbar"/>
  
          <android.support.v4.view.ViewPager
              android:id="@+id/viewpager"
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              android:layout_above="@+id/appTab"
              android:layout_below="@+id/ll_toolBar"
              app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
  
          <android.support.design.widget.AppBarLayout
              android:id="@+id/appTab"
              android:layout_width="match_parent"
              android:layout_height="wrap_content"
              android:layout_alignParentBottom="true"
cf00f22ab   Dinh Chu   update resource a...
25
              android:theme="@style/ThemeOverlay.AppCompat.Light">
7f095a929   chudinhbka@gmail.com   Create GIT Project
26
27
28
29
30
31
  
              <android.support.design.widget.TabLayout
                  android:id="@+id/tabs"
                  android:layout_width="match_parent"
                  android:layout_height="wrap_content"
                  style="@style/custom_tab"
cf00f22ab   Dinh Chu   update resource a...
32
                  android:background="@color/white"
7f095a929   chudinhbka@gmail.com   Create GIT Project
33
34
35
36
37
38
                  app:tabBackground="@drawable/tab_color_selector"
                  app:tabGravity="fill"
                  app:tabMode="fixed"/>
          </android.support.design.widget.AppBarLayout>
  
  </RelativeLayout>