onClick事件中點選跳轉新的activity提示FLAG_ACTIVITY_NEW_TASK的奇怪bug

only_books發表於2024-06-04

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;


相關文章