mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-13 02:21:14 +01:00
33 lines
1.2 KiB
XML
33 lines
1.2 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"
|
||
|
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>
|
||
|
|
||
|
</android.widget.RelativeLayout>
|