diff --git a/MusicApp/Resources/Portable Class/Player.cs b/MusicApp/Resources/Portable Class/Player.cs index ce4f431..80c502b 100644 --- a/MusicApp/Resources/Portable Class/Player.cs +++ b/MusicApp/Resources/Portable Class/Player.cs @@ -188,7 +188,7 @@ namespace MusicApp Allocation input = Allocation.CreateFromBitmap(rs, blured); Allocation output = Allocation.CreateTyped(rs, input.Type); ScriptIntrinsicBlur blurrer = ScriptIntrinsicBlur.Create(rs, Element.U8_4(rs)); - blurrer.SetRadius(10); + blurrer.SetRadius(13); blurrer.SetInput(input); blurrer.ForEach(output); diff --git a/MusicApp/Resources/Portable Class/QueueAdapter.cs b/MusicApp/Resources/Portable Class/QueueAdapter.cs index abdfc2c..7b1b0cc 100644 --- a/MusicApp/Resources/Portable Class/QueueAdapter.cs +++ b/MusicApp/Resources/Portable Class/QueueAdapter.cs @@ -4,6 +4,8 @@ using Android.Content.Res; using Android.Graphics; using Android.Support.Design.Widget; using Android.Support.V7.Widget; +using Android.Text; +using Android.Text.Style; using Android.Views; using Android.Widget; using MusicApp.Resources.values; @@ -153,8 +155,12 @@ namespace MusicApp.Resources.Portable_Class holder.Artist.SetBackgroundResource(0); } - holder.Title.Text = song.Title; - holder.Artist.Text = song.Artist; + SpannableString titleText = new SpannableString(song.Title); + titleText.SetSpan(new BackgroundColorSpan(Color.ParseColor("#8C000000")), 0, song.Title.Length, SpanTypes.InclusiveInclusive); + holder.Title.TextFormatted = titleText; + holder.Title.SetMaxLines(2); + + holder.Artist.Visibility = ViewStates.Gone; if (song.AlbumArt == -1 || song.IsYt) { diff --git a/MusicApp/Resources/layout/SongList.xml b/MusicApp/Resources/layout/SongList.xml index bcf3fb4..f9fbb61 100644 --- a/MusicApp/Resources/layout/SongList.xml +++ b/MusicApp/Resources/layout/SongList.xml @@ -53,15 +53,14 @@ + android:paddingRight="20dp" + android:paddingBottom="10dp" />