2014-12-30 78 views

回答

0

謝謝您的回覆@ akash93和@ ghostbust555。

我正在尋找一種方式,我可以用python腳本包裝它。

在這裏,我發現,幫助我找出解決方案,爲我的問題。

要禁用的導航欄:

adb shell service call activity 42 s16 com.android.systemui 

顯示一個圖像:

shell am start -a android.intent.action.VIEW -d file://data/test.jpg -t image/jpeg 

要啓用的導航欄:

adb shell am start -a android.intent.action.VIEW -d file://%s/test_lcd.jpg -t image/jpeg 

資源: Is there a way to hide the system/navigation bar in Android ICS

0

在你活動的onCreate方法添加

requestWindowFeature(Window.FEATURE_NO_TITLE); 
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, 
         WindowManager.LayoutParams.FLAG_FULLSCREEN); 

setContentView