I have a spinner that basically works. If the user selects one of the elements in it, the "onItemSelected" routine notices it simply.
But if the user clicks the same counter, but does not change it to the already visible element that he is currently displaying, the "onItemSelected" routine simply ignores it, and the logs show: -
WARN / InputManagerService (577): the window is already focused, ignoring focus amplification: com.android.internal.view.IInputMethodClient$Stub$Proxy@437948b0
Anyway, will I catch someone who does this? The idea is that my counter contains a list of names, and when the user selects one of the counter, it is added to the list.
I could just add another button to get the name from the counter, but the screen space is already gone and I no longer want to add content.
source
share