[android] fix: Colors and icons updated.

This commit is contained in:
Alexander Marchuk 2015-12-30 17:48:33 +03:00 committed by Constantin Shalnev
parent feaab1b248
commit f69965e3a0
25 changed files with 13 additions and 15 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 431 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 467 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 566 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 565 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 955 B

After

Width:  |  Height:  |  Size: 296 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 320 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 938 B

After

Width:  |  Height:  |  Size: 398 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 402 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2 KiB

After

Width:  |  Height:  |  Size: 527 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 564 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 693 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 706 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 755 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 811 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 993 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1,020 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 966 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -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>

View file

@ -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

View file

@ -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>

View file

@ -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>

View file

@ -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)