X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/blobdiff_plain/3d3046dc264792475c72987afc25beae23da4dc6..6b84d83b3544f8de4e56186f6ecbccd3d612702b:/src/com/owncloud/android/media/MediaControlView.java diff --git a/src/com/owncloud/android/media/MediaControlView.java b/src/com/owncloud/android/media/MediaControlView.java index 0d3587fe..5f2d46d4 100644 --- a/src/com/owncloud/android/media/MediaControlView.java +++ b/src/com/owncloud/android/media/MediaControlView.java @@ -1,7 +1,8 @@ -/* ownCloud Android client application +/** + * ownCloud Android client application * * @author David A. Velasco - * Copyright (C) 2012-2013 ownCloud Inc. + * Copyright (C) 2015 ownCloud Inc. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2, @@ -42,6 +43,7 @@ import java.util.Formatter; import java.util.Locale; import com.owncloud.android.R; +import com.owncloud.android.utils.DisplayUtils; /** @@ -219,7 +221,10 @@ public class MediaControlView extends FrameLayout /* implements OnLayoutChangeLi if (mProgress != null) { if (mProgress instanceof SeekBar) { SeekBar seeker = (SeekBar) mProgress; + DisplayUtils.colorPreLollipopHorizontalSeekBar(seeker); seeker.setOnSeekBarChangeListener(this); + } else { + DisplayUtils.colorPreLollipopHorizontalProgressBar(mProgress); } mProgress.setMax(1000); }