1

Android:有人帮助:我注意到其他人以前曾问过这种问题,但答案对我的情况没有用;我需要从内部类启动一个新活动,但我得到的只是下面的错误:

04-05 15:00:43.851: E/AndroidRuntime(3288): Caused by: java.lang.InstantiationException: com.school.School$StudentProfile

这是我的代码片段:

public class School extends Activity{
ProgressDialogue progressDialogue;

protected WebViewTask _webTask;

String path = "http://www.school.com/student/"; 

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.school);


    progressDialogue = new ProgressDialogue(School.this);

    _webTask = new WebViewTask();
    _webTask.execute();

}   

//rest of the code

  /** The inner class */

public class StudentProfile {
    Context context;


    /** Instantiate the interface and set the context */

    public StudentProfile(Context c) {
         context=c;
        }

    /** launch student activity */
    public void lauchProfile() {

         School.this.startActivity(new Intent(School.this, StudentProfile.class));
        //Intent intent = new Intent(School.this, StudentProfile.class);

        //startActivity(intent);

    }
}   

void webView(){
    String url = path +"student.php";   

    WebView wv = (WebView) findViewById(R.id.trivia_webview);
    WebSettings webSettings = wv.getSettings();
    webSettings.setJavaScriptEnabled(true);

    wv.addJavascriptInterface(new StudentProfile (this), "Student");

    wv.loadUrl(url);

    wv.setWebViewClient(new WebViewClient() {
        @Override
        public boolean shouldOverrideUrlLoading(WebView view, String url) {
            // open URL in the web view itself
            if (url.contains(url))
                return super.shouldOverrideUrlLoading(view, url);
            // open URL in an external web browser
            else {

                return true;
            }
        }
    });
}

// rest of the code

注意:Web 视图上有一个“学生”按钮,应该启动 StudentProfile 活动。

4

1 回答 1

3

StudentProfile不是一个Activity,所以你不能那样开始。它需要是一个单独的类,并在AndroidManifest.xml.

于 2013-04-06T04:26:08.200 回答