2016-06-14 15:56:38 +02:00
|
|
|
<android.widget.RelativeLayout 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"
|
2017-01-26 17:18:43 +01:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2016-06-14 15:56:38 +02:00
|
|
|
tools:context=".activities.appmanager.AppManagerActivity">
|
|
|
|
|
|
|
|
<LinearLayout
|
2017-04-03 21:05:27 +02:00
|
|
|
android:id="@+id/appmanager_main_layout"
|
2016-06-14 15:56:38 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2019-01-26 15:52:40 +01:00
|
|
|
<androidx.viewpager.widget.ViewPager
|
2016-06-14 15:56:38 +02:00
|
|
|
android:id="@+id/appmanager_pager"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
tools:context=".activities.appmanager.AppManagerActivity">
|
|
|
|
|
2019-01-26 15:52:40 +01:00
|
|
|
<com.google.android.material.tabs.TabLayout
|
2016-06-14 15:56:38 +02:00
|
|
|
android:id="@+id/charts_pagerTabStrip"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2017-04-01 17:06:38 +02:00
|
|
|
android:layout_gravity="top" />
|
2019-01-26 15:52:40 +01:00
|
|
|
</androidx.viewpager.widget.ViewPager>
|
2016-06-14 15:56:38 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|
2017-04-03 21:09:35 +02:00
|
|
|
|
2019-01-26 15:52:40 +01:00
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
2017-01-26 17:18:43 +01:00
|
|
|
android:id="@+id/fab"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_gravity="bottom|end"
|
2017-04-23 12:43:13 +02:00
|
|
|
app:srcCompat="@drawable/ic_add"
|
2018-03-27 21:01:25 +02:00
|
|
|
android:layout_margin="16dp" />
|
2016-06-14 15:56:38 +02:00
|
|
|
|
|
|
|
</android.widget.RelativeLayout>
|