-
Notifications
You must be signed in to change notification settings - Fork 541
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
As per the verbal discussion the audio bar was not playable in android API 19 and lowfi issue. * thumb seekbar * shadow to audio bar * audio bar width as per screen width * audio bar width as per screen width * play and pause icons size
- Loading branch information
1 parent
e3ed84a
commit b5bc32b
Showing
8 changed files
with
69 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,17 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:shape="line"> | ||
<solid android:color="@android:color/transparent" /> | ||
<stroke | ||
android:width="4dp" | ||
android:color="@color/white" /> | ||
</shape> | ||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<item android:id="@android:id/background"> | ||
<shape> | ||
<solid android:color="@color/white" /> | ||
<corners android:radius="8dp" /> | ||
</shape> | ||
</item> | ||
<item android:id="@android:id/progress"> | ||
<clip> | ||
<shape> | ||
<solid android:color="@color/colorAccent" /> | ||
<corners android:radius="8dp" /> | ||
</shape> | ||
</clip> | ||
</item> | ||
</layer-list> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 0 additions & 10 deletions
10
app/src/main/res/drawable/ic_pause_circle_outline_primary_24dp.xml
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,24 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:shape="oval"> | ||
<size | ||
android:width="16dp" | ||
android:height="16dp" /> | ||
<solid android:color="@color/colorPrimary" /> | ||
</shape> | ||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<item> | ||
<shape android:shape="oval"> | ||
<corners android:radius="10dp" /> | ||
<size | ||
android:width="22dp" | ||
android:height="22dp" /> | ||
<gradient | ||
android:endColor="@android:color/transparent" | ||
android:gradientRadius="20" | ||
android:startColor="@color/black_54" | ||
android:type="radial" /> | ||
</shape> | ||
</item> | ||
<item | ||
android:bottom="4dp" | ||
android:left="8dp" | ||
android:top="4dp"> | ||
<shape android:shape="oval"> | ||
<solid android:color="@color/white" /> | ||
<corners android:radius="10dp" /> | ||
</shape> | ||
</item> | ||
</layer-list> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters