Applied suggestions.
This commit is contained in:
parent
ce76f2a236
commit
b3f29e1367
@ -7,7 +7,7 @@
|
|||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="org.kde.kasts"
|
package="org.kde.kasts"
|
||||||
android:versionName="0.0.1"
|
android:versionName="0.0.1"
|
||||||
android:versionCode="1628950419"
|
android:versionCode="1628953797"
|
||||||
android:installLocation="auto">
|
android:installLocation="auto">
|
||||||
|
|
||||||
<supports-screens android:largeScreens="true" android:normalScreens="true" android:anyDensity="true" android:smallScreens="true"/>
|
<supports-screens android:largeScreens="true" android:normalScreens="true" android:anyDensity="true" android:smallScreens="true"/>
|
||||||
|
@ -226,15 +226,21 @@ public class KastsActivity extends QtActivity
|
|||||||
public static void setPlaybackSpeed(int rate)
|
public static void setPlaybackSpeed(int rate)
|
||||||
{
|
{
|
||||||
mediaData.playbackSpeed = rate;
|
mediaData.playbackSpeed = rate;
|
||||||
|
|
||||||
|
activity.updateNotification();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void setDuration(int duration)
|
public static void setDuration(int duration)
|
||||||
{
|
{
|
||||||
mediaData.duration = duration;
|
mediaData.duration = duration;
|
||||||
|
|
||||||
|
activity.updateNotification();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void setPosition(int position)
|
public static void setPosition(int position)
|
||||||
{
|
{
|
||||||
mediaData.position = position;
|
mediaData.position = position;
|
||||||
|
|
||||||
|
activity.updateNotification();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user