我在从静态方法调用非静态方法时面临一个大问题。
这是我的代码
Class SMS
{
public static void First_function()
{
SMS sms = new SMS();
sms.Second_function();
}
public void Second_function()
{
Toast.makeText(getApplicationContext(),"Hello",1).show(); // This i anable to display and cause crash
CallingCustomBaseAdapters(); //this was the adapter class and i anable to call this also
}
我能够调用 Second_function 但无法获取 Toast 和 CallCustomBaseAdapter() 方法,发生崩溃。
我应该怎么做才能解决这个问题?