[android] fix: Colors and icons updated.
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 431 B |
BIN
android/res/drawable-hdpi/ic_routing_get_night.png
Normal file
After Width: | Height: | Size: 467 B |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 566 B |
BIN
android/res/drawable-hdpi/ic_routing_ok_night.png
Normal file
After Width: | Height: | Size: 565 B |
Before Width: | Height: | Size: 955 B After Width: | Height: | Size: 296 B |
BIN
android/res/drawable-mdpi/ic_routing_get_night.png
Normal file
After Width: | Height: | Size: 320 B |
Before Width: | Height: | Size: 938 B After Width: | Height: | Size: 398 B |
BIN
android/res/drawable-mdpi/ic_routing_ok_night.png
Normal file
After Width: | Height: | Size: 402 B |
Before Width: | Height: | Size: 2 KiB After Width: | Height: | Size: 527 B |
BIN
android/res/drawable-xhdpi/ic_routing_get_night.png
Normal file
After Width: | Height: | Size: 564 B |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 693 B |
BIN
android/res/drawable-xhdpi/ic_routing_ok_night.png
Normal file
After Width: | Height: | Size: 706 B |
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 755 B |
BIN
android/res/drawable-xxhdpi/ic_routing_get_night.png
Normal file
After Width: | Height: | Size: 811 B |
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 993 B |
BIN
android/res/drawable-xxhdpi/ic_routing_ok_night.png
Normal file
After Width: | Height: | Size: 1,020 B |
BIN
android/res/drawable-xxxhdpi/ic_routing_get.png
Normal file
After Width: | Height: | Size: 966 B |
BIN
android/res/drawable-xxxhdpi/ic_routing_get_night.png
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
android/res/drawable-xxxhdpi/ic_routing_ok.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
android/res/drawable-xxxhdpi/ic_routing_ok_night.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
|
@ -127,7 +127,7 @@
|
|||
android:layout_marginTop="@dimen/margin_half_plus"
|
||||
android:background="?clickableBackground"
|
||||
wheel:wheelProgressColor="@color/base_green"
|
||||
wheel:wheelSecondaryColor="@color/downloader_progress_secondary"
|
||||
wheel:wheelSecondaryColor="?dividerHorizontal"
|
||||
wheel:wheelThickness="@dimen/margin_quarter"/>
|
||||
</LinearLayout>
|
||||
|
||||
|
|
|
@ -29,8 +29,8 @@
|
|||
android:layout_marginRight="@dimen/progress_wheel_width_neg"
|
||||
android:paddingLeft="@dimen/margin_quarter"
|
||||
android:paddingRight="@dimen/margin_quarter"
|
||||
wheel:wheelProgressColor="@color/downloader_progress_primary"
|
||||
wheel:wheelSecondaryColor="@color/downloader_progress_secondary"
|
||||
wheel:wheelProgressColor="?colorAccent"
|
||||
wheel:wheelSecondaryColor="?dividerHorizontal"
|
||||
wheel:wheelThickness="@dimen/margin_eighth"/>
|
||||
|
||||
<ImageView
|
||||
|
@ -50,8 +50,8 @@
|
|||
android:layout_centerVertical="true"
|
||||
android:paddingLeft="@dimen/margin_quarter"
|
||||
android:paddingRight="@dimen/margin_quarter"
|
||||
wheel:wheelProgressColor="@color/downloader_progress_primary"
|
||||
wheel:wheelSecondaryColor="@color/downloader_progress_secondary"
|
||||
wheel:wheelProgressColor="?colorAccent"
|
||||
wheel:wheelSecondaryColor="?dividerHorizontal"
|
||||
wheel:wheelThickness="@dimen/margin_eighth"/>
|
||||
|
||||
<LinearLayout
|
||||
|
|
|
@ -128,7 +128,7 @@
|
|||
android:layout_marginTop="@dimen/margin_half_plus"
|
||||
android:background="?clickableBackground"
|
||||
wheel:wheelProgressColor="@color/base_green"
|
||||
wheel:wheelSecondaryColor="@color/downloader_progress_secondary"
|
||||
wheel:wheelSecondaryColor="?dividerHorizontal"
|
||||
wheel:wheelThickness="@dimen/margin_quarter"/>
|
||||
</LinearLayout>
|
||||
</FrameLayout>
|
||||
|
|
|
@ -49,11 +49,7 @@
|
|||
<color name="fg_azimut_arrow">#FFFFFFFF</color>
|
||||
|
||||
<!-- Downloader -->
|
||||
<color name="downloader_progress_primary">@color/base_accent</color>
|
||||
<color name="downloader_progress_secondary">#FFF0F0F0</color>
|
||||
<color name="downloader_gray">#FF999999</color>
|
||||
<color name="downloader_country_downloaded">#FF000000</color>
|
||||
<color name="downloader_country_downloaded_night">#FF000000</color>
|
||||
<color name="downloader_spacer">#FFEFEFF4</color>
|
||||
<color name="downloader_spacer_night">@color/divider_night</color>
|
||||
|
||||
|
|
|
@ -209,7 +209,7 @@ abstract class BaseDownloadAdapter extends BaseAdapter
|
|||
|
||||
private void processFailed(ViewHolder holder, int position)
|
||||
{
|
||||
holder.mProgressSlided.setProgressColor(mFragment.getResources().getColor(R.color.downloader_progress_primary));
|
||||
holder.mProgressSlided.setProgressColor(ThemeUtils.getColor(mListView.getContext(), R.attr.colorAccent));
|
||||
holder.mProgressSlided.setCenterDrawable(null);
|
||||
retryDownload(position);
|
||||
}
|
||||
|
@ -482,10 +482,12 @@ abstract class BaseDownloadAdapter extends BaseAdapter
|
|||
|
||||
private static void bindCarRoutingIcon(ViewHolder holder, CountryItem item)
|
||||
{
|
||||
if (item.getOptions() == StorageOptions.MAP_OPTION_MAP_ONLY)
|
||||
holder.mImageRoutingStatus.setImageResource(R.drawable.ic_routing_get);
|
||||
else
|
||||
holder.mImageRoutingStatus.setImageResource(R.drawable.ic_routing_ok);
|
||||
boolean night = ThemeUtils.isNightTheme();
|
||||
int icon = (item.getOptions() == StorageOptions.MAP_OPTION_MAP_ONLY) ? night ? R.drawable.ic_routing_get_night
|
||||
: R.drawable.ic_routing_get
|
||||
: night ? R.drawable.ic_routing_ok_night
|
||||
: R.drawable.ic_routing_ok;
|
||||
holder.mImageRoutingStatus.setImageResource(icon);
|
||||
}
|
||||
|
||||
private void startItemDownloading(final ViewHolder holder, final int position, int newOptions)
|
||||
|
|