문제

I was making android keyboard using the same structure of the sample keyboard in SDK. I have an option button on the keyboard. I want this button to open the preference activity. Here is the code part:

if (primaryCode == LatinKeyboardView.KEYCODE_OPTIONS) {
        Intent i = new Intent(this, ImePreferences.class);
        startActivity(i);           
    }

The keyboard freezes when i press the option button. Anybody with a better solution?

도움이 되었습니까?

해결책

if (primaryCode == LatinKeyboardView.KEYCODE_OPTIONS) {
    Intent i = new Intent(this, ImePreferences.class);
    i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    startActivity(i);           
}

As you can see, the intent requires adding a flag which specifies new task/activity.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top