# Print output for @column tags ?>
public
class
SoundEffectConstants
extends Object
java.lang.Object | |
↳ | android.view.SoundEffectConstants |
Constants to be used to play sound effects via View#playSoundEffect(int)
Constants | |
---|---|
int |
CLICK
|
int |
NAVIGATION_DOWN
|
int |
NAVIGATION_LEFT
|
int |
NAVIGATION_RIGHT
|
int |
NAVIGATION_UP
|
Public methods | |
---|---|
static
int
|
getContantForFocusDirection(int direction)
Get the sonification constant for the focus directions. |
Inherited methods | |
---|---|
public static final int CLICK
Constant Value: 0 (0x00000000)
public static final int NAVIGATION_DOWN
Constant Value: 4 (0x00000004)
public static final int NAVIGATION_LEFT
Constant Value: 1 (0x00000001)
public static final int NAVIGATION_RIGHT
Constant Value: 3 (0x00000003)
public static final int NAVIGATION_UP
Constant Value: 2 (0x00000002)
public static int getContantForFocusDirection (int direction)
Get the sonification constant for the focus directions.
Parameters | |
---|---|
direction |
int : One of View#FOCUS_UP , View#FOCUS_DOWN ,
View#FOCUS_LEFT , View#FOCUS_RIGHT , View#FOCUS_FORWARD
or View#FOCUS_BACKWARD |
Returns | |
---|---|
int |
The appropriate sonification constant. |
Throws | |
---|---|
|
java.lang.IllegalArgumentException IllegalArgumentException} when the passed direction is not one of the documented values. |