2016-06-04 17:28:05 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/drawer_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
2017-05-04 19:13:56 +02:00
|
|
|
<RelativeLayout
|
2016-06-04 17:28:05 +02:00
|
|
|
android:layout_width="match_parent"
|
2017-05-04 19:13:56 +02:00
|
|
|
android:layout_height="match_parent">
|
2016-06-04 17:28:05 +02:00
|
|
|
|
2017-05-04 19:13:56 +02:00
|
|
|
<LinearLayout
|
2016-06-04 17:28:05 +02:00
|
|
|
android:layout_width="match_parent"
|
2017-05-04 19:13:56 +02:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
2016-06-04 17:28:05 +02:00
|
|
|
|
|
|
|
|
2017-05-04 19:13:56 +02:00
|
|
|
<info.nightscout.androidaps.tabs.SlidingTabLayout
|
|
|
|
android:id="@+id/tabs"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="10dp"
|
|
|
|
android:paddingEnd="30dp" />
|
|
|
|
|
|
|
|
<android.support.v4.view.ViewPager
|
|
|
|
android:id="@+id/pager"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/overview_menuButton"
|
|
|
|
android:layout_width="30dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:background="@color/tabBgColor"
|
|
|
|
android:paddingTop="5dp"
|
|
|
|
app:srcCompat="@drawable/ic_more_vert_black_24dp" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|
2017-04-29 20:16:50 +02:00
|
|
|
|
2016-06-04 17:28:05 +02:00
|
|
|
</android.support.v4.widget.DrawerLayout>
|