I am coding a java application for android.
In the application, I am using the back button on the phone as a way to cancel a task I am running. However, when I press it, in the Log Cat, I get the following:
08-30 10:45:25.784: W/KeyCharacterMap(1661): Bad keycharmap - filesize=32
08-30 10:45:25.784: W/KeyCharacterMap(1661): Error loading keycharmap file '/system/usr/keychars/bravo-keypad.kcm.bin'. hw.keyboards.0.devname='bravo-keypad'
08-30 10:45:25.784: W/KeyCharacterMap(1661): Using default keymap: /system/usr/keychars/qwerty.kcm.bin
The cancel still occurs but I am worried by this warning that comes up. I want the application to be as stable as possible. Does anyone know what this error means?
The cancel occurs by cancelling the ProgressDialog and the AsyncTask as follows:
usingDialog.setOnCancelListener(new OnCancelListener()
{
public void onCancel(DialogInterface dialog)
{
cancel(true);
}
});