I get the following error which I think means my activity is null
fragment not attached to activity on volley response
How can I fix this issue? These are my codes
MainActivity._MainActivity_.runOnUiThread(new Runnable() {
@Override
public void run() {
Toast.makeText(MainActivity._MainActivity_, "inserted", Toast.LENGTH_SHORT).show();
}
});
Activity activity = getActivity();
if(activity != null){
Intent mainIntent = new Intent(define, SaveNewFactor.class);
startActivity(mainIntent);
}else {
Log.i("myLog","activity is null");
}