如何通过Intent设置android Lock Screen Wallpager

时间:2015-09-24 04:48:34

标签: android android-intent android-wallpaper lockscreenwidget

我看到很多人问过这个问题,比如herehere和......但我找不到任何解决方案。 但是,我看到一些background app on playstore可以做到这一点。

我的目的是我想打开set lock screen wallpager的意图 enter image description here

此设备是SamSung S2

2 个答案:

答案 0 :(得分:1)

通常没有关于如何设置锁屏壁纸的(适当的)文档。 Samsung并不允许这样做。

在某些手机中,我们能够看到我们通过壁纸管理器设置的壁纸完全依赖于设备库存操作系统。我们无法专门控制它。

答案 1 :(得分:0)

Intent intent = new Intent(Intent.ACTION_ATTACH_DATA);
intent.addCategory(Intent.CATEGORY_DEFAULT);
intent.setDataAndType(Uri.parse(mPath), "image/jpeg");
intent.putExtra("mimeType", "image/jpeg");
startActivity(Intent.createChooser(intent, "Set as: Home Screen"));