AndroidAPS/app/src/main/res/layout/treatments_fragment.xml

23 lines
742 B
XML
Raw Normal View History

2016-06-05 14:53:03 +02:00
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".plugins.Treatments.TreatmentsFragment">
2017-05-11 18:54:50 +02:00
<android.support.v4.view.ViewPager
android:id="@+id/treatments_pager"
android:layout_width="match_parent"
android:layout_height="match_parent">
2017-05-11 18:54:50 +02:00
<android.support.v4.view.PagerTabStrip
android:id="@+id/treatments_tabstrip"
2016-06-05 14:53:03 +02:00
android:layout_width="match_parent"
2017-05-11 18:54:50 +02:00
android:layout_height="wrap_content">
</android.support.v4.view.PagerTabStrip>
2016-06-05 14:53:03 +02:00
2017-05-11 18:54:50 +02:00
</android.support.v4.view.ViewPager>
2016-07-11 17:49:09 +02:00
2016-06-05 14:53:03 +02:00
</FrameLayout>