如何在LiveWallpaper引擎中使用辅助活动

时间:2016-06-12 23:02:02

标签: android android-activity live-wallpaper

我有一个类活动,可以在AnimatedView中制作图形动画(MainActivity)。作为一个应用程序工作得很好,但...... 我想在动态壁纸中启动此活动,并将其用作动画壁纸。 有可能吗?

我尝试这个简单的代码,但不能工作:

public class LiveWallpaperService extends WallpaperService {

private class LiveWallpaperEngine extends Engine {

    Intent myIntent = new Intent(".MainActivity");
    startActivity(myIntent);

}
}

@Override
public Engine onCreateEngine() {
    // TODO Auto-generated method stub
    return null;
}

0 个答案:

没有答案