I have noticed something peculiar regarding the "Close all" option, that appear when you press the three horizontal lines in the lower left corner:
Often, all visible apps slide upwards, and everything close as it should.
But sometimes all apps slide sideways off the screen, always to the left, and disappear. However, none of them are closed down, and reappear when pressing the three lines again.
Can anyone recognize this behavior, and explain what happens and why?
This is a Samsung A21s, Android version 12.
Related
When I suspend my app by pressing the home button, the app immediately disappears revealing the home screen. The top-most icon on the home screen is drawn inside a white shaded box, as if the icon is somehow selected. This happens before onPause() is run but does not happen if finish() is run.
This only happens with my app. I've seen it on Android 6 and 7. What could I be doing to cause this?
More information:
I can prevent this from happening if I activate a popup menu before pressing the home button.
Still more information:
Removing the 4th line makes the problem go away. This is a TextView.
curTitle.setFocusable(true);
curTitle.setFocusableInTouchMode(true);
curTitle.requestFocus();
//curTitle.requestFocusFromTouch();
I still don't understand it.
Thanks.
https://i.stack.imgur.com/sWJCQ.png
My navigation drawer sometimes does not appear, the toggle button turns into an arrow pointing left and the screen dims, but the fragments and layout don't appear.
I can't reliably replicate this issue and it happens rarely, randomly, and didn't see anything in my searches about it. So maybe this is a known issue or maybe others are having the same thing.
I was wondering if you had a way to fix the scrolling glitch with Logcat on Eclipse. Whenever I try to scroll up, the screen moves up for a sec and then goes back to the bottom.
It is really annoying and I can't get to some of my errors because of it.
You should use the Scroll Lock button.
Also, consider using the corresponding LogCat filters in order to only display the messages you are interested in.
I've experienced this as a error. Unselecting the scroll lock button will not work 99% of the time. As soon as you try to scroll the window (with mouse wheel or clicking the scroll bar up/down arrows) the scroll lock, turns back on.
Solution:
I've found a workaround, after unselecting the scroll lock, then click on a message and then press the page up key on your keyboard once and this will release the lock completely. You can now scroll with the mouse wheel and scroll bar arrows. This works for me on Windows 7.
I have an app which also includes a service with a Notification.
Right now I am experiencing the foillowing problem :
I start my app which will work fine
after couple of minutes the powersave kicks in and I get a black screen
I (or hte user) click the Menu-button to dismiss the black screen and to unlock the screenlock
Now my (fullscreen) app will have "moved" like 30-40 pixels downwards, creating an ugly black border or hole. When I move the scrollwheel it will move up and down, and when I press the Menu button (showing my ap''s menu) it will "fix" the view...
or
I start my app which will work fine
I press the Home button exiting the app, my service though will (correctly) keep running
when selecting my service from the notification-bar I will get once again :
-Now my (fullscreen) app will have "moved" like 30-40 pixels downwards, creating an ugly black border or hole. When I move the scrollwheel it will move up and down, and when I press the Menu button (showing my ap''s menu) it will "fix" the view...
Any idea what the problem is ? The app is running on a ADP2 with Android 1.6
Thanks in advance !
Ok, after some testing I noticed that if I don't run the Activity on Fullscreen, but just leave the TtileBar away this won't happen...
Still this is no solution to me, I want it to be fullscreen...
Noticed siomething else, when I have the View with the black bar, and I press the home button it will "refresh" the View correctly just before actually going to the Home Screen :(
I am using AutoCompleteTextView (ACTV) in my app.
The ACTV is vertically positioned around 100px from the top.
When user clicks on it, software keyboard opens and the suggestions dropdown appears below the ACTV.
Now I am getting to the bug - when user taps on some suggestion from the dropdown, the dropdown jumps above the ACTV!
So if I want to select a suggestion, I have to tap on the screen twice - firstly when the dropdown is below and then after it jumps to the top (by "jumps" I mean it immediately disappears under my finger and opens above).
Any idea how to circumvent this bug?