开发者

How to make icon of app on desktop? Problems with WebView

开发者 https://www.devze.com 2023-03-25 17:27 出处:网络
In my app I have one activity with WebView. When I push Home button and then click on icon my app -- web page do not reload - it is good.

In my app I have one activity with WebView.

When I push Home button and then click on icon my app -- web page do not reload - it is good. But in code I create icon manually:

private void createIcon(int iconId){
        final Intent shortcutIntent = new Intent(Intent.ACTION_MAIN);
        ComponentName name = new ComponentName(getPackageName(), ".FullScreen开发者_JAVA技巧BrowserActivity");
        shortcutIntent.setComponent(name);
        shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);

        Intent addIntent = new Intent();
        addIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
        addIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, "Fulscreen Browser");
        addIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, Intent.ShortcutIconResource.fromContext(this, iconId));

        addIntent.setAction("com.android.launcher.action.INSTALL_SHORTCUT");
        this.sendBroadcast(addIntent);
    }

When I click this icon - app starts new copy of themselfs and webpage starts loading.

How to make new icon on desktop manual(after install) and when click on icon - webpage in WebView do no reloading?

Thanks!

0

精彩评论

暂无评论...
验证码 换一张
取 消