I don't understand what is happening. This program used to work and now it has an issue. I display a list of countries and ask the user to select a country. Sometimes, not always, as soon as I click on a radio button int he list, the program bombs and closes. It seems to happen when I get out of this routine:
I try to set breakpoints, but I think the error is in the internal code as I never get an error message when the problem happens. When the error occurs it never seems to show the virtual keyboard. It does this with bra v13.10 or v13.40.
Does anyone have any ideas about this? I am using two different libraries for my various settings: Dialogs2 and Better Dialogs.
When I check my Google Play account, I also see these messages, which I do not understand:
[libinput.so] android::InputChannel::receiveMessage(android::InputMessage*)
[libutils.so] android::sp<android::Thread>::clear()
[libandroid_runtime.so] android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)
[libc.so] abort
I try to set breakpoints, but I think the error is in the internal code as I never get an error message when the problem happens. When the error occurs it never seems to show the virtual keyboard. It does this with bra v13.10 or v13.40.
Does anyone have any ideas about this? I am using two different libraries for my various settings: Dialogs2 and Better Dialogs.
When I check my Google Play account, I also see these messages, which I do not understand:
[libinput.so] android::InputChannel::receiveMessage(android::InputMessage*)
[libutils.so] android::sp<android::Thread>::clear()
[libandroid_runtime.so] android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)
[libc.so] abort
Code::
res = InputList(List2, "Choose birth state/country", 0) 'display list of countries & get user selection
selected_country = country_list(res) 'get user country selection
If res = 122 Then selected_country = "Georgi" 'use abbreviation so it doesn't get confused with Georgia, the US state
EditText21.Visible = False
txtCity.Background = cd1
btnUpdateCity.Visible = True
txtCity.Visible = True
txtCity.RequestFocus
IME1.ShowKeyboard(txtCity)
End Sub
Last edited: