mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-12-04 16:02:55 +01:00
75d3dffb14
"Optimize imports" has been run on all source files, there might be unrelated changes, but these should be harmless.
40 lines
1.5 KiB
XML
40 lines
1.5 KiB
XML
<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"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
tools:context=".activities.appmanager.AppManagerActivity">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/appmanager_main_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<androidx.viewpager.widget.ViewPager
|
|
android:id="@+id/appmanager_pager"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context=".activities.appmanager.AppManagerActivity">
|
|
|
|
<com.google.android.material.tabs.TabLayout
|
|
android:id="@+id/charts_pagerTabStrip"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="top" />
|
|
</androidx.viewpager.widget.ViewPager>
|
|
|
|
</LinearLayout>
|
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
|
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"
|
|
app:srcCompat="@drawable/ic_add"
|
|
android:layout_margin="16dp" />
|
|
|
|
</android.widget.RelativeLayout>
|