2018-05-20 21:53:55 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-07-05 17:04:54 +02:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-05-20 21:53:55 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:fitsSystemWindows="true"
|
2018-08-10 17:13:40 +02:00
|
|
|
|
2019-03-02 21:39:14 +01:00
|
|
|
tools:context=".plugins.pump.common.hw.rileylink.dialog.RileyLinkStatusActivity">
|
2018-05-20 21:53:55 +02:00
|
|
|
|
2019-07-05 17:04:54 +02:00
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
2018-05-20 21:53:55 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingTop="@dimen/appbar_padding_top"
|
|
|
|
android:theme="@style/AppTheme.AppBarOverlay">
|
|
|
|
|
2019-07-05 17:04:54 +02:00
|
|
|
<com.google.android.material.tabs.TabLayout
|
2018-05-20 21:53:55 +02:00
|
|
|
android:id="@+id/rileylink_settings_tabs"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
|
2019-07-05 17:04:54 +02:00
|
|
|
</com.google.android.material.tabs.TabLayout>
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
2018-05-20 21:53:55 +02:00
|
|
|
|
2019-07-05 17:04:54 +02:00
|
|
|
<androidx.viewpager.widget.ViewPager
|
2018-05-20 21:53:55 +02:00
|
|
|
android:id="@+id/rileylink_settings_container"
|
|
|
|
android:layout_width="match_parent"
|
2018-08-10 17:13:40 +02:00
|
|
|
android:layout_height="512dp"
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"
|
|
|
|
tools:layout_editor_absoluteY="55dp" />
|
2018-05-20 21:53:55 +02:00
|
|
|
|
|
|
|
|
2019-07-05 17:04:54 +02:00
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
2018-05-20 21:53:55 +02:00
|
|
|
android:id="@+id/rileylink_settings_fab"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="end|bottom"
|
|
|
|
android:layout_margin="@dimen/fab_margin"
|
|
|
|
app:srcCompat="@drawable/ic_refresh" />
|
|
|
|
|
|
|
|
|
2019-07-05 17:04:54 +02:00
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|