我为我工作的公司创建了一个通用的可重用类,以创建一些通用的界面元素。
该类在构造中采用单个参数:应用程序上下文。
其中一种方法ContentClickableRowWithIcon
允许您传入一个意图用作点击操作。
继承人完整的方法声明:
public LinearLayout ContentClickableRowWithIcon(Drawable icon, String title, Intent i, final Boolean chooser)
onClickEvent 中使用最后一个属性来确定是调用选择器还是直接进入意图。
public LinearLayout ContentClickableRowWithIcon(Drawable icon, String title, Intent i, final Boolean chooser) {
LinearLayout ll = new LinearLayout(mContext);
// .. LinerLayout construction, has nothing to do with the action
i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); // this is apparently getting ignored... (ps: i've tried i.setFlags as well)
final Intent intent = i;
ll.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
if(chooser)
mContext.startActivity(Intent.createChooser(intent, "Complete With...")); // crashes here with: android.util.AndroidRuntimeException: Calling startActivity() from outside of an Activity context requires the FLAG_ACTIVITY_NEW_TASK flag. Is this really what you want?
else
mContext.startActivity(intent); // this works fine
}
});
return ll;
}
正如评论中提到的,只要我不提供使用选择器的能力,一切正常(此列表中的所有内容都有一个新的活动标志,我很清楚这一点,并且在解决此问题时会进行清理)
我这样做的那一刻,抛出异常:
android.util.AndroidRuntimeException: Calling startActivity() from outside of an Activity context requires the FLAG_ACTIVITY_NEW_TASK flag. Is this really what you want?
我已经没有想法了...
/// EDIT:: 值得注意的是,在调试时,Intent 中的 flags 属性设置为268435456
使用 addFlags 和268435456
setFlags,当它到达使用 onClick 操作中的意图的时间时