如何在Android上全屏显示图像?

时间:2014-12-30 22:51:34

标签: android

我不想显示已保存在设备上的图像。我想通过访问Android设备屏幕上的所有像素来在整个屏幕上显示图像。

任何帮助将不胜感激!

3 个答案:

答案 0 :(得分:0)

答案 1 :(得分:0)

在您的活动的onCreate方法中添加

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

之前setContentView

答案 2 :(得分: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