Juggernaut's blog

27Mar/100

Quick android tips

To hide window title in onCreate() of activity do the

requestWindowFeature(Window.FEATURE_NO_TITLE);

To hide system statusbar (the thing with battery status) do the following in the onCreate() method:

getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);

This should be made before setting any content.

Tagged as: No Comments
21Jun/090

org-mode FTW!

Here I've found interesting org-mode manual/tutorial. Worth reading.

Filed under: Uncategorized No Comments