2015-03-03 15:14:00 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2015-03-06 19:37:54 +01:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/dashboard"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:visibility="gone" >
|
2015-03-03 15:14:00 +01:00
|
|
|
|
2015-03-06 19:37:54 +01:00
|
|
|
<include
|
|
|
|
android:id="@+id/init_progress"
|
|
|
|
layout="@layout/application_loading"
|
|
|
|
android:visibility="gone" />
|
2015-03-03 15:14:00 +01:00
|
|
|
|
2015-03-23 01:54:51 +01:00
|
|
|
<FrameLayout
|
2015-03-17 02:00:16 +01:00
|
|
|
android:id="@+id/animateContent"
|
2015-03-06 19:37:54 +01:00
|
|
|
android:layout_width="match_parent"
|
2015-03-23 01:54:51 +01:00
|
|
|
android:layout_height="match_parent" >
|
2015-03-05 13:46:13 +01:00
|
|
|
|
2015-03-26 01:53:49 +01:00
|
|
|
<com.github.ksoichiro.android.observablescrollview.ObservableScrollView
|
2015-03-17 02:00:16 +01:00
|
|
|
android:id="@+id/main_scroll"
|
2015-03-08 20:59:18 +01:00
|
|
|
android:layout_width="match_parent"
|
2015-03-17 02:00:16 +01:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:fadeScrollbars="true" >
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical" >
|
|
|
|
|
2015-03-24 00:27:09 +01:00
|
|
|
<FrameLayout
|
2015-03-17 02:00:16 +01:00
|
|
|
android:id="@+id/map_part_dashboard"
|
2015-03-24 00:27:09 +01:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="@dimen/dashboard_map_top_padding" >
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/map_download_button"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:text="@string/shared_string_download"
|
|
|
|
android:visibility="gone" />
|
|
|
|
</FrameLayout>
|
2015-03-17 02:00:16 +01:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/content"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical" />
|
|
|
|
</LinearLayout>
|
2015-03-26 01:53:49 +01:00
|
|
|
</com.github.ksoichiro.android.observablescrollview.ObservableScrollView>
|
2015-03-17 02:00:16 +01:00
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/dash_list_view_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:visibility="gone" >
|
|
|
|
|
2015-03-23 01:54:51 +01:00
|
|
|
<View
|
|
|
|
android:id="@+id/dash_list_background"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2015-05-03 23:19:42 +02:00
|
|
|
android:background="?attr/bg_color" />
|
2015-03-23 01:54:51 +01:00
|
|
|
|
|
|
|
<com.github.ksoichiro.android.observablescrollview.ObservableListView
|
2015-03-17 02:00:16 +01:00
|
|
|
android:id="@+id/dash_list_view"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:fadeScrollbars="true" >
|
2015-03-23 01:54:51 +01:00
|
|
|
</com.github.ksoichiro.android.observablescrollview.ObservableListView>
|
2015-03-17 02:00:16 +01:00
|
|
|
</FrameLayout>
|
2015-03-24 00:27:09 +01:00
|
|
|
|
2015-03-25 15:54:24 +01:00
|
|
|
<include layout="@layout/dashboard_toolbar"/>
|
2015-03-24 16:59:34 +01:00
|
|
|
|
2015-03-23 01:54:51 +01:00
|
|
|
</FrameLayout>
|
2015-03-03 15:14:00 +01:00
|
|
|
|
2015-03-24 16:59:34 +01:00
|
|
|
|
2015-03-03 15:14:00 +01:00
|
|
|
</FrameLayout>
|