diff --git a/OsmAnd/res/anim/slide_in_bottom.xml b/OsmAnd/res/anim/slide_in_bottom.xml new file mode 100644 index 0000000000..4409549034 --- /dev/null +++ b/OsmAnd/res/anim/slide_in_bottom.xml @@ -0,0 +1,7 @@ + + + + + \ No newline at end of file diff --git a/OsmAnd/res/anim/slide_out_bottom.xml b/OsmAnd/res/anim/slide_out_bottom.xml new file mode 100644 index 0000000000..6d20264129 --- /dev/null +++ b/OsmAnd/res/anim/slide_out_bottom.xml @@ -0,0 +1,7 @@ + + + + + \ No newline at end of file diff --git a/OsmAnd/res/layout/editing_poi_filter_list.xml b/OsmAnd/res/layout/editing_poi_filter_list.xml index 63f9fbf8d7..7faa136c75 100644 --- a/OsmAnd/res/layout/editing_poi_filter_list.xml +++ b/OsmAnd/res/layout/editing_poi_filter_list.xml @@ -16,7 +16,7 @@ + tools:context="net.osmand.plus.osmedit.EditPoiFragment"> + + app:contentInsetStart="72dp"/> + android:background="?attr/pstsTabBackground" + android:theme="?attr/appbar_layout_theme"> @@ -95,11 +97,11 @@ android:id="@+id/tab_layout" android:layout_width="match_parent" android:layout_height="wrap_content" - android:background="@color/color_white" - app:tabIndicatorColor="@color/osmand_orange" - app:tabSelectedTextColor="@color/osmand_orange" - app:tabTextColor="@android:color/darker_gray" - app:layout_scrollFlags="scroll"/> + android:background="?attr/pstsTabBackground" + app:layout_scrollFlags="scroll" + app:tabIndicatorColor="?attr/pstsIndicatorColor" + app:tabSelectedTextColor="?attr/pstsIndicatorColor" + app:tabTextColor="@android:color/darker_gray"/> @@ -126,17 +128,19 @@ + android:textColor="@color/dashboard_general_button_text_light" + app:textAllCapsCompat="true" + tools:text="Save"/> diff --git a/OsmAnd/res/layout/fragment_edit_poi_advanced.xml b/OsmAnd/res/layout/fragment_edit_poi_advanced.xml index aff4691b92..359af7aa58 100644 --- a/OsmAnd/res/layout/fragment_edit_poi_advanced.xml +++ b/OsmAnd/res/layout/fragment_edit_poi_advanced.xml @@ -4,7 +4,7 @@ xmlns:osmand="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent" - android:theme="@style/OsmandLightTheme.NewAppTheme"> + android:theme="?attr/new_app_theme"> + android:theme="@attr/new_app_theme"> - - - - - \ No newline at end of file diff --git a/OsmAnd/res/layout/list_menu_item_native.xml b/OsmAnd/res/layout/list_menu_item_native.xml index 2bbb08bbb6..bf6182eda2 100644 --- a/OsmAnd/res/layout/list_menu_item_native.xml +++ b/OsmAnd/res/layout/list_menu_item_native.xml @@ -25,7 +25,7 @@ android:layout_marginBottom="11dip" android:gravity="center_vertical" android:text="@string/layer_poi" - android:textSize="@dimen/default_list_text_size_large" + android:textSize="@dimen/default_list_text_size" android:layout_weight="1" /> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/OsmAnd/res/layout/open_time_list_item.xml b/OsmAnd/res/layout/open_time_list_item.xml index b8f9adc591..0e4745e30b 100644 --- a/OsmAnd/res/layout/open_time_list_item.xml +++ b/OsmAnd/res/layout/open_time_list_item.xml @@ -25,7 +25,7 @@ android:id="@+id/daysTextView" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:textColor="@color/dashboard_black" + android:textColor="?android:textColorPrimary" android:textSize="@dimen/default_list_text_size" tools:text="Mo-We"/> @@ -52,7 +52,7 @@ android:id="@+id/openingTextView" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:textColor="@color/dashboard_black" + android:textColor="?android:textColorPrimary" android:textSize="@dimen/default_list_text_size" tools:text="08:00"/> @@ -77,7 +77,7 @@ android:id="@+id/closingTextView" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:textColor="@color/dashboard_black" + android:textColor="?android:textColorPrimary" android:textSize="@dimen/default_list_text_size" tools:text="20:00"/> diff --git a/OsmAnd/res/layout/poi_tag_list_item.xml b/OsmAnd/res/layout/poi_tag_list_item.xml index 793ca7af43..2179ca7ebd 100644 --- a/OsmAnd/res/layout/poi_tag_list_item.xml +++ b/OsmAnd/res/layout/poi_tag_list_item.xml @@ -4,6 +4,7 @@ xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="wrap_content" + xmlns:tools="http://schemas.android.com/tools" android:orientation="horizontal" android:paddingTop="16dp"> @@ -18,7 +19,8 @@ android:id="@+id/tagEditText" android:layout_width="match_parent" android:layout_height="wrap_content" - android:hint="Tag"/> + android:hint="Tag" + tools:text="asdf"/> diff --git a/OsmAnd/res/layout/searchbyname_list.xml b/OsmAnd/res/layout/searchbyname_list.xml index 7642e53a67..d691d2eda1 100644 --- a/OsmAnd/res/layout/searchbyname_list.xml +++ b/OsmAnd/res/layout/searchbyname_list.xml @@ -3,12 +3,14 @@ android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal" - android:paddingBottom="3dp" - android:paddingTop="3dp"> + android:paddingTop="7dp" + android:paddingBottom="7dp" + android:paddingLeft="16dp" + android:paddingRight="16dp"> diff --git a/OsmAnd/res/layout/searchpoifolder_list.xml b/OsmAnd/res/layout/searchpoifolder_list.xml index 2b500a852a..ff5f69cdd0 100644 --- a/OsmAnd/res/layout/searchpoifolder_list.xml +++ b/OsmAnd/res/layout/searchpoifolder_list.xml @@ -17,7 +17,7 @@ - - + android:layout_height="@dimen/list_item_height" > + + + + \ No newline at end of file diff --git a/OsmAnd/res/layout/tips_and_tricks.xml b/OsmAnd/res/layout/tips_and_tricks.xml deleted file mode 100644 index c3222f2c40..0000000000 --- a/OsmAnd/res/layout/tips_and_tricks.xml +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - -