Small bugfixes and better performance
This commit is contained in:
parent
35dbb1ee95
commit
e39162c126
21 changed files with 202 additions and 105 deletions
|
|
@ -130,7 +130,7 @@
|
|||
android:layout_margin="16dp"
|
||||
android:background="?attr/music_controller_container_color">
|
||||
|
||||
<com.github.clans.fab.FloatingActionButton
|
||||
<com.melnykov.fab.FloatingActionButton
|
||||
android:id="@+id/fab"
|
||||
style="@style/PlayPauseFab"
|
||||
android:layout_centerInParent="true"
|
||||
|
|
@ -141,6 +141,7 @@
|
|||
android:layout_width="56dp"
|
||||
android:layout_height="56dp"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginRight="-4dp"
|
||||
android:layout_toLeftOf="@+id/fab"
|
||||
android:background="?round_selector"
|
||||
android:padding="14dp"
|
||||
|
|
@ -152,6 +153,7 @@
|
|||
android:layout_width="56dp"
|
||||
android:layout_height="56dp"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginLeft="-4dp"
|
||||
android:layout_toRightOf="@+id/fab"
|
||||
android:background="?round_selector"
|
||||
android:padding="14dp"
|
||||
|
|
|
|||
|
|
@ -70,7 +70,7 @@
|
|||
android:background="@android:color/transparent"/>
|
||||
</LinearLayout>
|
||||
|
||||
<com.github.clans.fab.FloatingActionButton
|
||||
<com.melnykov.fab.FloatingActionButton
|
||||
android:id="@+id/fab"
|
||||
style="@style/PlayPauseFab"
|
||||
android:layout_gravity="right"
|
||||
|
|
|
|||
|
|
@ -150,7 +150,7 @@
|
|||
android:layout_alignParentTop="true"
|
||||
android:background="#00000000"/>
|
||||
|
||||
<com.github.clans.fab.FloatingActionButton
|
||||
<com.melnykov.fab.FloatingActionButton
|
||||
android:id="@+id/fab"
|
||||
style="@style/PlayPauseFab"
|
||||
android:layout_gravity="bottom|right"
|
||||
|
|
|
|||
|
|
@ -70,7 +70,7 @@
|
|||
android:background="@android:color/transparent"/>
|
||||
</LinearLayout>
|
||||
|
||||
<com.github.clans.fab.FloatingActionButton
|
||||
<com.melnykov.fab.FloatingActionButton
|
||||
android:id="@+id/fab"
|
||||
style="@style/PlayPauseFab"
|
||||
android:layout_gravity="right"
|
||||
|
|
|
|||
|
|
@ -63,8 +63,8 @@
|
|||
android:background="?colorPrimary"
|
||||
app:elevation="@dimen/toolbar_elevation"
|
||||
android:paddingLeft="64dp"
|
||||
android:textColor="@color/grey_400"
|
||||
android:textColorPrimary="@color/white"
|
||||
android:textColor="@color/sliding_tabs_deactivated"
|
||||
android:textColorPrimary="@color/sliding_tabs_activated"
|
||||
app:pstsTabPaddingLeftRight="8dp"/>
|
||||
|
||||
<View
|
||||
|
|
@ -79,7 +79,7 @@
|
|||
android:layout_gravity="right|bottom"
|
||||
android:fitsSystemWindows="true">
|
||||
|
||||
<com.github.clans.fab.FloatingActionButton
|
||||
<com.melnykov.fab.FloatingActionButton
|
||||
android:id="@+id/fab"
|
||||
style="@style/PlayPauseFab"
|
||||
android:layout_margin="16dp"
|
||||
|
|
|
|||
|
|
@ -166,7 +166,7 @@
|
|||
android:scaleType="fitCenter"
|
||||
android:src="@drawable/ic_shuffle_grey600_48dp"/>
|
||||
|
||||
<com.github.clans.fab.FloatingActionButton
|
||||
<com.melnykov.fab.FloatingActionButton
|
||||
android:id="@+id/fab"
|
||||
style="@style/PlayPauseFab"
|
||||
android:layout_centerInParent="true"/>
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@
|
|||
android:layout_gravity="right|bottom"
|
||||
android:fitsSystemWindows="true">
|
||||
|
||||
<com.github.clans.fab.FloatingActionButton
|
||||
<com.melnykov.fab.FloatingActionButton
|
||||
android:id="@+id/fab"
|
||||
style="@style/PlayPauseFab"
|
||||
android:layout_margin="16dp"
|
||||
|
|
|
|||
|
|
@ -191,7 +191,7 @@
|
|||
android:layout_alignParentTop="true"
|
||||
android:background="#00000000"/>
|
||||
|
||||
<com.github.clans.fab.FloatingActionButton
|
||||
<com.melnykov.fab.FloatingActionButton
|
||||
android:id="@+id/fab"
|
||||
style="@style/PlayPauseFab"
|
||||
android:layout_gravity="bottom|right"
|
||||
|
|
|
|||
4
app/src/main/res/values-sw600dp-land/integers.xml
Normal file
4
app/src/main/res/values-sw600dp-land/integers.xml
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<integer name="grid_columns">6</integer>
|
||||
</resources>
|
||||
4
app/src/main/res/values-sw600dp/integers.xml
Normal file
4
app/src/main/res/values-sw600dp/integers.xml
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<integer name="grid_columns">4</integer>
|
||||
</resources>
|
||||
Loading…
Add table
Add a link
Reference in a new issue