view - hide the navigation bar "more" button at the bottom of the screen on Android -


on application, have, on devices (such htc one) bar containing "more" button (e.g : 3 vertical dots). example below amazon app gets same behavior.

three dots appear

i tried remove it, adding on manifest :

<application android:theme="@android:style/theme.black.notitlebar.fullscreen" > </application> 

it didn't work. tried change visibility of displayed view :

view v = this.findviewbyid(android.r.id.content); v.setsystemuivisibility(view.system_ui_flag_hide_navigation); 

but works when displaying activity. when interact on view, navigation bar reappers.

i noticed navigation bar not appear on galaxy s iii nor on galaxy s ii. can navigation bar displayed because of large resolution of htc 1 screen ?

is there way remove bar when appears ?

set android:targetsdkversion 14 or higher. see this blog post of mine year or ago more details.


Comments

Popular posts from this blog

Change php variable from jquery value using ajax (same page) -

Pull out data related to my apps from Android Play Store and iOS App Store -

How can I fetch data from a web server in an android application? -