Joined
·
19 Posts
If I just want the standard 3dot menu to always show would I only need this step?9. Find these methods/lines: .method public setMenuVisibility(Z)V and .method public setMenuVisibility(ZZ)V
You want to delete most of the content of these methods, leaving just the .locals, .paramaters, and return lines. Here's what it should looks like:
[background=rgb(245, 245, 245)]Doing this keeps the menu key always visible.[/background]Code:<br /> .method public setMenuVisibility(Z)V<br /> .locals 1<br /> .parameter "show"<br /> <br /> return-void<br /> .end method<br /> <br /> .method public setMenuVisibility(ZZ)V<br /> .locals 2<br /> .parameter "show"<br /> .parameter "force"<br /> <br /> return-void<br /> .end method<br />