I'm designing a custom keyboard for Android. I used a sample SoftKeyboard project. In LatinKeyboard.java class there is a switch statement like bellow:
switch (options & (EditorInfo.IME_MASK_ACTION | EditorInfo.IME_FLAG_NO_ENTER_ACTION))
{
//Cases
}
I'm trying to understand this switch statement. I searched switch statement documentation but I couldn't find "&" sign in switch. I also searched on other places for solution but no solution so far.