android 启动壁纸,android-在动态壁纸中启动浏览器意图

我正在尝试在onTouchEvent中的android中加载浏览器视图的意图.基本上,我已经创建了一个动态壁纸,如果单击它,那么我想使用指定的uri打开浏览器意图.

我试过了onTouchEvent内部的以下代码

Uri uri = Uri.parse("http://www.google.com");

Intent intent = new Intent(Intent.ACTION_VIEW, uri);

startActivity(intent);

但我收到以下错误:

android.util.AndroidRuntimeException: Calling startActivity() from outside of

an Activitycontext requires the FLAG_ACTIVITY_NEW_TASK flag. Is this really what you want?

另一种方法是,我创建了一个活动,并在其onCreate方法中尝试了以下代码:

public void onCreate(Bundle icicle) {

super.onCreate(icicle);

browser=new WebView(this);

setContentView(browser);

browser.loadUrl("http://commonsware.com");

}

并尝试通过自定义意图消息加载此活动,如下所示,但仍然出现相同的错误

Intent intent = new Intent(ACTION);

startActivity(intent);

// over here I have not used context, as while creating live wallpaper I

// don't know here to get the context

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值