[android] Added bookmark backup layout
Before Width: | Height: | Size: 199 B After Width: | Height: | Size: 167 B |
Before Width: | Height: | Size: 202 B After Width: | Height: | Size: 155 B |
Before Width: | Height: | Size: 168 B After Width: | Height: | Size: 141 B |
Before Width: | Height: | Size: 164 B After Width: | Height: | Size: 131 B |
Before Width: | Height: | Size: 241 B After Width: | Height: | Size: 192 B |
Before Width: | Height: | Size: 239 B After Width: | Height: | Size: 179 B |
Before Width: | Height: | Size: 303 B After Width: | Height: | Size: 232 B |
Before Width: | Height: | Size: 281 B After Width: | Height: | Size: 223 B |
Before Width: | Height: | Size: 356 B After Width: | Height: | Size: 268 B |
Before Width: | Height: | Size: 382 B After Width: | Height: | Size: 255 B |
|
@ -5,7 +5,14 @@
|
|||
style="@style/MwmWidget.FrameLayout"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
<include layout="@layout/recycler_default"/>
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical">
|
||||
<!-- TODO move backup layout into recyclerview -->
|
||||
<include layout="@layout/item_bookmark_backup"/>
|
||||
<include layout="@layout/recycler_default"/>
|
||||
</LinearLayout>
|
||||
|
||||
<com.mapswithme.maps.widget.PlaceholderView
|
||||
android:id="@+id/placeholder"
|
||||
|
|
60
android/res/layout/item_bookmark_backup.xml
Normal file
|
@ -0,0 +1,60 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
<LinearLayout
|
||||
android:id="@+id/header"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="?selectableItemBackground"
|
||||
android:orientation="horizontal"
|
||||
android:paddingStart="@dimen/margin_base"
|
||||
android:paddingLeft="@dimen/margin_base"
|
||||
android:paddingEnd="@dimen/margin_base"
|
||||
android:paddingRight="@dimen/margin_base"
|
||||
android:paddingTop="@dimen/margin_half_plus"
|
||||
android:paddingBottom="@dimen/margin_half_plus">
|
||||
<TextView
|
||||
android:layout_width="0dp"
|
||||
android:layout_weight="1"
|
||||
android:layout_height="wrap_content"
|
||||
android:textAppearance="@style/MwmTextAppearance.Body3"
|
||||
android:textAllCaps="true"
|
||||
android:gravity="start|center_vertical"
|
||||
android:drawableRight="@drawable/ic_expand_less"
|
||||
android:drawableEnd="@drawable/ic_expand_less"
|
||||
android:text="@string/settings_backup_bookmarks"/>
|
||||
</LinearLayout>
|
||||
<include layout="@layout/divider_horizontal"/>
|
||||
<LinearLayout
|
||||
android:id="@+id/content"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical"
|
||||
android:padding="@dimen/margin_base">
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:textAppearance="@style/MwmTextAppearance.Body3"
|
||||
tools:text="@string/bookmarks_message_unbackuped_user"/>
|
||||
<Button
|
||||
android:id="@+id/button"
|
||||
style="@style/MwmWidget.Button.Start"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:minHeight="@dimen/nav_button_height"
|
||||
android:paddingBottom="@dimen/margin_half_plus"
|
||||
android:paddingTop="@dimen/margin_half_plus"
|
||||
android:paddingStart="@dimen/margin_half"
|
||||
android:paddingLeft="@dimen/margin_half"
|
||||
android:paddingEnd="@dimen/margin_half"
|
||||
android:paddingRight="@dimen/margin_half"
|
||||
android:layout_marginTop="@dimen/margin_base"
|
||||
android:layout_marginBottom="@dimen/margin_base"
|
||||
android:layout_gravity="center"
|
||||
tools:text="@string/authorization_button_sign_in"/>
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
|
@ -242,6 +242,10 @@
|
|||
<item name="android:foreground">@drawable/shadow_top</item>
|
||||
</style>
|
||||
|
||||
<style name="MwmWidget.FrameLayout.BookmarkCategories">
|
||||
<item name="android:background">?windowBackgroundForced</item>
|
||||
</style>
|
||||
|
||||
<style name="MwmWidget.RatingBar" parent="android:Widget.RatingBar">
|
||||
<item name="android:progressDrawable">@drawable/rating_bar</item>
|
||||
<item name="android:indeterminateDrawable">@drawable/rating_bar</item>
|
||||
|
|