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.DeviceComponent
methods are defined by that interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
decreaseDeviceVolume()
Deprecated.UsePlayer.decreaseDeviceVolume()
instead.DeviceInfo
getDeviceInfo()
Deprecated.UsePlayer.getDeviceInfo()
instead.int
getDeviceVolume()
Deprecated.UsePlayer.getDeviceVolume()
instead.void
increaseDeviceVolume()
Deprecated.UsePlayer.increaseDeviceVolume()
instead.boolean
isDeviceMuted()
Deprecated.UsePlayer.isDeviceMuted()
instead.void
setDeviceMuted(boolean muted)
Deprecated.UsePlayer.setDeviceMuted(boolean)
instead.void
setDeviceVolume(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.
-
-