静的メソッドから非静的メソッドを呼び出す際に大きな問題に直面しています。
これは私のコードです
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() メソッドを取得できず、クラッシュが発生します。
その問題を解決するにはどうすればよいですか?