add ProgressBar.incrementProgressBy() and AudioManager.setStreamVolume()

This commit is contained in:
Julian Winkler
2024-05-15 23:16:17 +02:00
parent 5fdcff4419
commit 415547a90d
2 changed files with 12 additions and 0 deletions

View File

@@ -48,4 +48,8 @@ public class AudioManager {
public boolean isWiredHeadsetOn() {
return false;
}
public void setStreamVolume(int streamType, int index, int flags) {
System.out.println("AudioManager.setStreamVolume: >" + streamType + "< >" + index + "< >" + flags + "<");
}
}