Android: Invisible objects still clickable

≡放荡痞女 提交于 2019-12-23 07:34:35

问题


I have an activity that has buttons and images that can appear and disappear depending on user interactions.

What I am finding is that objects at the back, which have been set to invisible, are still triggering clicks, sort of. They are not processing the code related to being clicked, but they sort of momentarily reappear, and then disappear again instantly when clicked on.

They also appear to be interfering somewhat with buttons laid over the top of them. These buttons become very fiddly and difficult to click at times, when there is an invisible object behind them.

I am using simply:

object.setVisibility(View.VISIBLE);

And:

object.setVisibility(View.INVISIBLE);

To make my items appear and disappear. Is this not what I should be doing?

EDIT:

People keep asking me for the exact same code that they are giving me. This is the code I have been given, and that I am using currently.

        btnLifePlus5.setVisibility(View.GONE);
        btnLifePlus5.setFocusableInTouchMode(false);
        txtLifePlus5.setVisibility(View.GONE);
        txtLifePlus5.setFocusableInTouchMode(false);
        btnLifePlus1.setVisibility(View.GONE);
        btnLifePlus1.setFocusableInTouchMode(false);
        txtLifePlus1.setVisibility(View.GONE);
        txtLifePlus1.setFocusableInTouchMode(false);
        btnLifeMinus5.setVisibility(View.GONE);
        btnLifeMinus5.setFocusableInTouchMode(false);
        txtLifeMinus5.setVisibility(View.GONE);
        txtLifeMinus5.setFocusableInTouchMode(false);
        btnLifeMinus1.setVisibility(View.GONE);
        btnLifeMinus1.setFocusableInTouchMode(false);
        txtLifeMinus1.setVisibility(View.GONE);
        txtLifeMinus1.setFocusableInTouchMode(false);

This makes no difference to just setting them as invisible.


回答1:


Making any View invisible don't prevent us to trigger their listeners. It's just you can not see it every other thing would be same as if it was visible.

If you don't want to use it at all change it to View.GONE

Difference in View.INVISIBLE and View.GONE: Invisible objects keep on utilizing the space assigned to it while object set as View.GONE would leave the space of space as if its not on screen.

Use

object.setVisibility(View.GONE);

rather than

object.setVisibility(View.INVISIBLE);



回答2:


Use object.setVisibility(View.GONE); instead object.setVisibility(View.INVISIBLE);

View.GONE Means This view is invisible, and it doesn't take any space for layout purposes.

View.GONE This view is invisible, and it doesn't take any space for layout purposes.

View.INVISIBLE This view is invisible, but it still takes up space for layout purposes.

I hope it will helps you .




回答3:


Try: object.setClickable(false); As an alternative, you can: object.setEnabled(false);




回答4:


Try object.setVisibility(View.GONE)

View.GONE prevents view to draw its layout bounds (width and height) whereas View.INVISIBLE draws it.




回答5:


You should use:

object.setVisibility(View.GONE);

View.GONE removes your view completely from the layout, but View.INVISIBLE only makes your view invisible but still found in your layout, thus clickable.




回答6:


The only way I managed to solve this ridiculous issue was to create a sort of view panel that sits between the objects in my activity. This view panel is the size of the screen, uses the same colour background, and starts invisible.

Normally, I make object A disappear, and make object B appear. When I click the space previously occupied by object A, it momentarily flashes back onto the screen and then disappears again. It looks terrible. Subsequent clicks do not reproduce this bug until the next time I make object A disappear.

The fix is to make object A disappear, make the new view panel visible on top of it, and then make object B appear on top of the view panel. So the panel acts as a sort of barrier between the hidden object, and user interactions. The user is not aware that this view panel even exists, as it blends in to the standard background, but when I now click the space where object A would be, it now no longer flashes back onto the screen momentarily. While this is a poor solution to have to use, this OS is bugged and I am left with no choice.

My activity now looks as though it is perfectly stable and working perfectly. I don't like it, but it works.

Thanks a lot, google.



来源:https://stackoverflow.com/questions/32140625/android-invisible-objects-still-clickable

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!