如何从应用程序转移到动态壁纸预览?

时间:2012-10-11 15:15:04

标签: android live-wallpaper

我一直在寻找一个具体的例子,无法在任何地方找到它。

我想要做的是:从我的应用程序中单击按钮并移动到我的应用程序动态壁纸的动态壁纸预览,以便用户可以选择激活它。

现在我在线阅读的内容,我将使用WallpaperManager's ACTION_CHANGE_LIVE_WALLPAPER与EXTRA_LIVE_WALLPAPER_COMPONENT指向我的LiveWallpapers ComponentName。

这是我到目前为止的代码。谁知道我做错了什么?截至目前,我单击按钮,没有任何反应......(我记录了它,它实际上已达到此代码)。

Intent i = new Intent();
i.setAction(WallpaperManager.ACTION_CHANGE_LIVE_WALLPAPER);
i.putExtra(WallpaperManager.EXTRA_LIVE_WALLPAPER_COMPONENT, "com.example.myapp.livewallpaper.LiveWallpaperService");
startActivity(i);

如果您需要更多我忘记发布的信息,请告诉我。

*我也知道这是API 16+,这只是我的情况,当手机是API 16 +

1 个答案:

答案 0 :(得分:20)

我也找不到一个例子。我注意到的第一件事是EXTRA_LIVE_WALLPAPER_COMPONENT不需要字符串,而是ComponentName。我ComponentName的第一次剪辑看起来像这样:

ComponentName component = new ComponentName(getPackageName(), "LiveWallpaperService");
intent = new Intent(WallpaperManager.ACTION_CHANGE_LIVE_WALLPAPER);
intent.putExtra(WallpaperManager.EXTRA_LIVE_WALLPAPER_COMPONENT, component);
startActivityForResult(intent, REQUEST_SET_LIVE_WALLPAPER);

这没有削减它,所以我挖掘了Android源代码并在LiveWallpaperChange.java中找到了以下内容:

Intent queryIntent = new Intent(WallpaperService.SERVICE_INTERFACE);
queryIntent.setPackage(comp.getPackageName());
List<ResolveInfo> list = getPackageManager().queryIntentServices( queryIntent, PackageManager.GET_META_DATA);

使用上面的块进行一点调试,这是我的最终形式......

ComponentName component = new ComponentName(getPackageName(), getPackageName() + ".LiveWallpaperService");
intent = new Intent(WallpaperManager.ACTION_CHANGE_LIVE_WALLPAPER);
intent.putExtra(WallpaperManager.EXTRA_LIVE_WALLPAPER_COMPONENT, component);
startActivityForResult(intent, REQUEST_SET_LIVE_WALLPAPER);

密钥位于ComponentName的第二个参数中。

从技术上讲,我的最终形式首先支持新方法的层次结构,然后是旧方法,然后是Nook Tablet / Nook Color特定意图:

Intent intent;

// try the new Jelly Bean direct android wallpaper chooser first
try {
    ComponentName component = new ComponentName(getPackageName(), getPackageName() + ".LiveWallpaperService");
    intent = new Intent(WallpaperManager.ACTION_CHANGE_LIVE_WALLPAPER);
    intent.putExtra(WallpaperManager.EXTRA_LIVE_WALLPAPER_COMPONENT, component);
    startActivityForResult(intent, REQUEST_SET_LIVE_WALLPAPER);
} 
catch (android.content.ActivityNotFoundException e3) {
    // try the generic android wallpaper chooser next
    try {
        intent = new Intent(WallpaperManager.ACTION_LIVE_WALLPAPER_CHOOSER);
        startActivityForResult(intent, REQUEST_SET_LIVE_WALLPAPER);
    } 
    catch (android.content.ActivityNotFoundException e2) {
        // that failed, let's try the nook intent
        try {
            intent = new Intent();
            intent.setAction("com.bn.nook.CHANGE_WALLPAPER");
            startActivity(intent);
        }
        catch (android.content.ActivityNotFoundException e) {
            // everything failed, let's notify the user
            showDialog(DIALOG_NO_WALLPAPER_PICKER);
        }
    }
}