我只想创建一个应用,当用户点击启动器图标时,它会将它们带到我的网站。我发现在stackoverflow中执行此操作的示例代码,它几乎可以工作。下面的代码确实成功启动了一个网站,它在显示“应用程序John Project(进程com.john.project)已经意外停止后立即弹出”。请再试一次。“我猜我没有正确关闭我的应用程序?这是我的MainActivity.java:
package com.john.project;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.content.Intent;
import android.net.Uri;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
String url = "http://project.john.com/";
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(url));
startActivity(i);
//super.onCreate(savedInstanceState);
//setContentView(R.layout.activity_main);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
答案 0 :(得分:1)
您必须在onCreate()中调用super.onCreate()
,否则您将使用SuperNotCalledException
崩溃。
答案 1 :(得分:1)
在onCreate()的顶部添加super.onCreate()
。