Gadgetbridge/app/src/main/res/layout/activity_fragmentappmanager.xml

40 lines
1.5 KiB
XML
Raw Normal View History

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"
xmlns:app="http://schemas.android.com/apk/res-auto"
2016-06-14 15:56:38 +02:00
tools:context=".activities.appmanager.AppManagerActivity">
<LinearLayout
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">
<android.support.v4.view.ViewPager
android:id="@+id/appmanager_pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".activities.appmanager.AppManagerActivity">
<android.support.design.widget.TabLayout
2016-06-14 15:56:38 +02:00
android:id="@+id/charts_pagerTabStrip"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="top" />
2016-06-14 15:56:38 +02:00
</android.support.v4.view.ViewPager>
</LinearLayout>
<android.support.design.widget.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" />
2016-06-14 15:56:38 +02:00
</android.widget.RelativeLayout>