我只想在按下按钮时打开一个URL,也打开新活动,但只显示新活动。
p
答案 0 :(得分:0)
使用 startActivity 而不是startService来打开网页
public void rate (View v){
AppLink= new Intent(Intent.ACTION_VIEW,Uri.parse("http://www.google.com"));
i=new Intent (this, Lev7Activity.class);
startActivity(AppLink);
startActivity(i);
this.finish();
}
答案 1 :(得分:0)
您已使用 startService 启动浏览器的活动。 startService 只能用于启动后台任务(扩展Service的类)。 如果您要开始新活动,请改为使用 startActivity :
$ heroku login
$ heroku git:clone -a appname
$ cd appname
$ git add .
$ git commit -am "make it better"
$ git push heroku master