每当我的应用程序启动时,我都必须从测试类中调用一个打印方法。我从扩展 android.app.application 类的 MyApplication 类的 onCreate() 调用了这个打印方法。在 print() 方法中,我显示了一条 toast 消息。但是,没有显示该敬酒消息。请帮助!
public class MyApplication extends Application
{
@Override
public void onCreate() {
super.onCreate();
Test.print(this);
Toast.makeText(this,"On Create called",Toast.LENGTH_LONG).show();
}
}
public class Test {
static void print(Context context)
{
Toast.makeText(context,"Print called",Toast.LENGTH_LONG).show();
}
}