Android Hardware Acceleration – to use or not to use?

To use or not to use It is advised to use hardware acceleration only if you have complex custom computations for scaling, rotating and translating of images, but do not use it for drawing lines or curves (and other trivial operations) (source). If you plan on having common transitions and also given that you have … Read more

How to disable behind view click event Framelayout

A better way is to set the top and bottom frame to be clickable, with: android:clickable=”true” Doing so will make sure that the view/frame itself will trap all clicking events, and will not pass it through the view behind it. Note this method works for all layout/view/controls, but many controls (such as buttons) already have … Read more