2015-10-17 16:39:44 +02:00
|
|
|
<android.support.v4.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/activity_swipe_layout"
|
|
|
|
tools:context="nodomain.freeyourgadget.gadgetbridge.activities.charts.ChartsActivity"
|
2015-07-21 00:06:20 +02:00
|
|
|
android:paddingLeft="0px"
|
|
|
|
android:paddingRight="0px"
|
|
|
|
android:paddingTop="0px"
|
|
|
|
android:paddingBottom="0px"
|
2015-10-17 16:39:44 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<LinearLayout android:layout_width="match_parent"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:id="@+id/charts_main_layout"
|
|
|
|
android:layout_height="match_parent">
|
2015-07-21 00:06:20 +02:00
|
|
|
|
|
|
|
<LinearLayout
|
2015-09-04 21:55:29 +02:00
|
|
|
android:id="@+id/charts_date_bar"
|
2015-07-21 00:06:20 +02:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
<Button
|
|
|
|
android:id="@+id/charts_previous"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="<" />
|
2015-08-17 02:22:16 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/charts_text_date"
|
2015-09-06 00:29:23 +02:00
|
|
|
android:layout_width="0dp"
|
2015-07-21 00:06:20 +02:00
|
|
|
android:layout_height="wrap_content"
|
2015-08-17 02:22:16 +02:00
|
|
|
android:layout_weight="5"
|
|
|
|
android:text="Today"
|
|
|
|
/>
|
2015-07-21 00:06:20 +02:00
|
|
|
|
2015-08-17 02:22:16 +02:00
|
|
|
<Button
|
|
|
|
android:id="@+id/charts_next"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text=">" />
|
|
|
|
|
2015-07-21 00:06:20 +02:00
|
|
|
</LinearLayout>
|
|
|
|
|
2015-10-17 16:39:44 +02:00
|
|
|
<android.support.v4.view.ViewPager android:id="@+id/charts_pager"
|
2015-07-21 00:06:20 +02:00
|
|
|
android:layout_width="match_parent" android:layout_height="match_parent"
|
2015-10-17 16:39:44 +02:00
|
|
|
tools:context="nodomain.freeyourgadget.gadgetbridge.activities.charts.ChartsActivity">
|
|
|
|
<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>
|
|
|
|
|
2015-07-21 00:06:20 +02:00
|
|
|
|
2015-10-17 16:39:44 +02:00
|
|
|
</LinearLayout>
|
2015-07-21 00:06:20 +02:00
|
|
|
|
2015-10-17 16:39:44 +02:00
|
|
|
</android.support.v4.widget.SwipeRefreshLayout>
|