Package com.google.android.exoplayer2
Interface ExoPlayer.DeviceComponent
-
- All Known Implementing Classes:
SimpleExoPlayer
- Enclosing interface:
- ExoPlayer
@Deprecated public static interface ExoPlayer.DeviceComponent
Deprecated.UsePlayer, as theExoPlayer.DeviceComponentmethods are defined by that interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voiddecreaseDeviceVolume()Deprecated.UsePlayer.decreaseDeviceVolume()instead.DeviceInfogetDeviceInfo()Deprecated.UsePlayer.getDeviceInfo()instead.intgetDeviceVolume()Deprecated.UsePlayer.getDeviceVolume()instead.voidincreaseDeviceVolume()Deprecated.UsePlayer.increaseDeviceVolume()instead.booleanisDeviceMuted()Deprecated.UsePlayer.isDeviceMuted()instead.voidsetDeviceMuted(boolean muted)Deprecated.UsePlayer.setDeviceMuted(boolean)instead.voidsetDeviceVolume(int volume)Deprecated.UsePlayer.setDeviceVolume(int)instead.
-
-
-
Method Detail
-
getDeviceInfo
@Deprecated DeviceInfo getDeviceInfo()
Deprecated.UsePlayer.getDeviceInfo()instead.
-
getDeviceVolume
@Deprecated int getDeviceVolume()
Deprecated.UsePlayer.getDeviceVolume()instead.
-
isDeviceMuted
@Deprecated boolean isDeviceMuted()
Deprecated.UsePlayer.isDeviceMuted()instead.
-
setDeviceVolume
@Deprecated void setDeviceVolume(int volume)
Deprecated.UsePlayer.setDeviceVolume(int)instead.
-
increaseDeviceVolume
@Deprecated void increaseDeviceVolume()
Deprecated.UsePlayer.increaseDeviceVolume()instead.
-
decreaseDeviceVolume
@Deprecated void decreaseDeviceVolume()
Deprecated.UsePlayer.decreaseDeviceVolume()instead.
-
setDeviceMuted
@Deprecated void setDeviceMuted(boolean muted)
Deprecated.UsePlayer.setDeviceMuted(boolean)instead.
-
-