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
|
|
|
android:paddingBottom="0px"
|
|
|
|
android:paddingLeft="0px"
|
|
|
|
android:paddingRight="0px"
|
|
|
|
android:paddingTop="0px"
|
|
|
|
tools:context=".activities.appmanager.AppManagerActivity">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/charts_main_layout"
|
|
|
|
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.v4.view.PagerTabStrip
|
|
|
|
android:id="@+id/charts_pagerTabStrip"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="bottom" />
|
|
|
|
</android.support.v4.view.ViewPager>
|
|
|
|
|
|
|
|
</LinearLayout>
|
2017-01-26 17:18:43 +01:00
|
|
|
<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"
|
|
|
|
android:src="@drawable/ic_add_white"
|
|
|
|
app:elevation="6dp"
|
|
|
|
app:pressedTranslationZ="12dp"
|
|
|
|
android:layout_marginBottom="10dp"
|
|
|
|
android:layout_marginRight="10dp" />
|
2016-06-14 15:56:38 +02:00
|
|
|
|
|
|
|
</android.widget.RelativeLayout>
|