Calling startActivity() from outside of an Activity context requires the FLAG_ACTIVITY_NEW_TASK flag
我在LinkMovementMethod
onClick事件中點選跳轉新的activity
一直閃屏提示
equires the FLAG_ACTIVITY_NEW_TASK flag
但其實解決方法是把
return false;
改為
return true;
我在LinkMovementMethod
onClick事件中點選跳轉新的activity
一直閃屏提示
但其實解決方法是把
return false;
改為
return true;