我在项目中创建了一个可重用的片段。
我想强制调用Fragment通过Bundle
发送引用,以便我可以使用getArguments()
获取它。
如何抛出我不想处理的异常,以便我强制执行?
我计划这样做:
Bundle bundle = getArguments();
String callerFragment = bundle.getString(COMMON_COMPONENT_CALLER_TAG);
if(callerFragment == null){
throw new UnknownCallerException("Missing caller name");
}