2014-11-27 17:30:55 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2014-12-18 13:26:09 +01:00
|
|
|
android:id="@+id/main_scroll"
|
2014-11-27 17:30:55 +01:00
|
|
|
android:background="@color/dashboard_background" >
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2014-12-02 11:43:06 +01:00
|
|
|
android:layout_height="match_parent"
|
2014-11-27 17:30:55 +01:00
|
|
|
android:orientation="vertical"
|
2014-12-17 16:13:43 +01:00
|
|
|
android:padding="@dimen/dashPadding" >
|
2014-11-27 21:57:43 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="match_parent"
|
2014-12-15 13:51:43 +01:00
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<LinearLayout android:id="@+id/content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
|
|
|
<fragment
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:name="net.osmand.plus.dashboard.DashMapFragment"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
|
|
|
<fragment
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:name="net.osmand.plus.dashboard.DashSearchFragment"
|
2014-12-17 16:13:43 +01:00
|
|
|
android:layout_marginTop="@dimen/dashCardMargin"
|
2014-12-15 13:51:43 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
|
|
|
<fragment
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:name="net.osmand.plus.dashboard.DashFavoritesFragment"
|
2014-12-17 16:13:43 +01:00
|
|
|
android:layout_marginTop="@dimen/dashCardMargin"
|
2014-12-17 12:13:52 +01:00
|
|
|
android:layout_width="match_parent"
|
2014-12-15 13:51:43 +01:00
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
2014-12-15 16:01:04 +01:00
|
|
|
<fragment
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:name="net.osmand.plus.dashboard.DashAudioVideoNotesFragment"
|
2014-12-17 16:13:43 +01:00
|
|
|
android:layout_marginTop="@dimen/dashCardMargin"
|
2014-12-15 16:01:04 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
2014-12-15 13:51:43 +01:00
|
|
|
<fragment
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-12-21 14:30:33 +01:00
|
|
|
android:name="net.osmand.plus.dashboard.DashDownloadMapsFragment"
|
2014-12-17 16:13:43 +01:00
|
|
|
android:layout_marginTop="@dimen/dashCardMargin"
|
2014-12-15 13:51:43 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
|
|
|
<fragment
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-12-21 14:30:33 +01:00
|
|
|
android:name="net.osmand.plus.dashboard.DashUpdatesFragment"
|
2014-12-17 16:13:43 +01:00
|
|
|
android:layout_marginTop="@dimen/dashCardMargin"
|
2014-12-15 13:51:43 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
|
|
|
<fragment
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:name="net.osmand.plus.dashboard.DashPluginsFragment"
|
2014-12-17 16:13:43 +01:00
|
|
|
android:layout_marginTop="@dimen/dashCardMargin"
|
2014-12-15 13:51:43 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
</LinearLayout>
|
2014-11-27 17:30:55 +01:00
|
|
|
|
2014-12-02 11:02:52 +01:00
|
|
|
<LinearLayout android:id="@+id/credentials"
|
2014-11-27 17:30:55 +01:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2014-11-27 21:57:43 +01:00
|
|
|
android:orientation="horizontal"
|
2014-12-02 11:02:52 +01:00
|
|
|
android:visibility="gone"
|
2014-12-17 16:13:43 +01:00
|
|
|
android:padding="@dimen/dashPadding"
|
2014-12-02 11:43:06 +01:00
|
|
|
android:baselineAligned="false">
|
2014-11-27 17:30:55 +01:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
2014-11-27 21:57:43 +01:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="bottom"
|
|
|
|
android:layout_weight="0.5" >
|
2014-11-27 17:30:55 +01:00
|
|
|
|
|
|
|
<TextView
|
2014-11-27 21:57:43 +01:00
|
|
|
android:id="@+id/About"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-12-02 11:43:06 +01:00
|
|
|
android:layout_gravity="start|bottom"
|
2014-11-27 21:57:43 +01:00
|
|
|
android:text="@string/about_settings"
|
2014-12-17 16:13:43 +01:00
|
|
|
android:textSize="@dimen/dashAboutTextSize" />
|
2014-11-27 17:30:55 +01:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</ScrollView>
|