98 lines
No EOL
3.8 KiB
XML
98 lines
No EOL
3.8 KiB
XML
<?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"
|
|
android:id="@+id/main_scroll"
|
|
android:background="@color/dashboard_background" >
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:padding="@dimen/dashPadding" >
|
|
<LinearLayout
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
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"
|
|
android:layout_marginTop="@dimen/dashCardMargin"
|
|
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"
|
|
android:layout_marginTop="@dimen/dashCardMargin"
|
|
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.DashAudioVideoNotesFragment"
|
|
android:layout_marginTop="@dimen/dashCardMargin"
|
|
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.DashDownloadMapsFragment"
|
|
android:layout_marginTop="@dimen/dashCardMargin"
|
|
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.DashUpdatesFragment"
|
|
android:layout_marginTop="@dimen/dashCardMargin"
|
|
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"
|
|
android:layout_marginTop="@dimen/dashCardMargin"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"/>
|
|
</LinearLayout>
|
|
|
|
<LinearLayout android:id="@+id/credentials"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:visibility="gone"
|
|
android:padding="@dimen/dashPadding"
|
|
android:baselineAligned="false">
|
|
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom"
|
|
android:layout_weight="0.5" >
|
|
|
|
<TextView
|
|
android:id="@+id/About"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="start|bottom"
|
|
android:text="@string/about_settings"
|
|
android:textSize="@dimen/dashAboutTextSize" />
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
</ScrollView> |