求教toast显示问题~~
有两个java文件
第一个是
package com.helloworld;import android.app.Activity;import android.content.Context;import android.os.Bundle;import android.widget.Toast;public class HelloworldActivity extends Activity { static Context o; /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); //setContentView(R.layout.main); String n="number1"; Context o=getApplicationContext(); Toast.makeText(o, n, Toast.LENGTH_LONG).show(); hello.on(); }}package com.helloworld;import android.app.Application;import android.content.Context;import android.widget.Toast;public class hello extends Application { Context aa; public static void on() { String n="number2"; Toast.makeText(HelloworldActivity.o, n, Toast.LENGTH_LONG).show(); }}