我迁移到导航组件,并且由于我现在使用片段,所以不再在片段中调用onActivityResult()。
我定义了传递给AddEditTaskFragment的参数,并希望将修改后的参数发送回TodayFragment。由于onViewCreated()每次我导航到TodayFragment时都会被调用,因此我想检查是否确实将参数传递给它以将Task保存到数据库中。
由于AddEditTaskFragmentArgs.fromBundle(getArguments())!= null无效,因此建议的检查片段是否接收参数的推荐方法是什么?
这就是我导航回调用片段的方式。
AddEditTaskFragmentDirections.ActionAddEditTaskFragmentToHomeFragment action = AddEditTaskFragmentDirections.actionAddEditTaskFragmentToHomeFragment();
action.setTitle(title);
if (id != -1) action.setId(id);
action.setPriority(priority);
action.setAddanote(duedate);
action.setDuedate(remindme);
action.setRemindme(addanote);
action.setModeEdit(modeEdit);
Navigation.findNavController(getView()).navigate(action);
现在我想做类似的事情:
if (AddEditTaskFragmentArgs.fromBundle(getArguments()) != ...?) {
// Receive data from action
String title = AddEditTaskFragmentArgs.fromBundle(getArguments()).getTitle().trim();
int priority = AddEditTaskFragmentArgs.fromBundle(getArguments()).getPriority();
String duedate = AddEditTaskFragmentArgs.fromBundle(getArguments()).getDuedate();
String remindme = AddEditTaskFragmentArgs.fromBundle(getArguments()).getRemindme();
String addanote = AddEditTaskFragmentArgs.fromBundle(getArguments()).getAddanote().trim();
boolean modeEdit = AddEditTaskFragmentArgs.fromBundle(getArguments()).getModeEdit();
int id = AddEditTaskFragmentArgs.fromBundle(getArguments()).getId();
Task task = new Task(title, addanote, priority, duedate, remindme);
taskViewModel.insert(task);
Toast.makeText(getContext(), "Task saved.", Toast.LENGTH_SHORT).show();
}
答案 0 :(得分:1)
此后不知道您是否已找到答案,但这是我通常的工作方式。
在XML导航资源文件中,需要在每个目标片段中声明参数(在您的情况下,这似乎都是两个片段,因为AddEditTaskFragmentArgs
应该会接收一些参数,对其进行修改并发送给它们返回TodayFragment
)。我认为你有这样的东西:
<?xml version="1.0" encoding="utf-8"?>
<navigation>
<!-- ... -->
<fragment
android:id="@+id/actionAddEditTaskFragmentToHomeFragment"
android:name="...AddEditTaskFragment"
android:label="..."
tools:layout="..." >
<argument
android:name="id"
app:argType="integer"
android:defaultValue="3" />
<argument
android:name="title"
app:argType="string"
app:nullable="true" />
<!-- Other arguments -->
</fragment>
<!-- Other fragments -->
</navigation>
在源代码片段中,您可以使用setter来设置参数(如您所做的那样),也可以直接在操作构造函数中传递参数(取决于参数类型以及是否为其指定了默认值)。可以在official documentation中找到更多信息。
由于我注意到您没有向构造函数提供任何参数,所以我猜测您已经为所有参数提供了默认值。
然后,在目标片段AddEditTaskFragment
中,您可以执行以下操作:
@Override
public void onViewCreated(View view, @Nullable Bundle savedInstanceState) {
// Get arguments from bundle, if any
if (getArguments() != null) {
AddEditTaskFragmentArgs args = AddEditTaskFragmentArgs.fromBundle(getArguments());
if (args.getTitle() != null) {
String title = args.getTitle();
} else {
// Title is null because it's a String, that we allowed nullable and because user did not set it
}
int id = args.getId(); // An int cannot be null and we specified a default value
// Check other arguments ...
}
else {
// No argument was provided
// Use default values or throw an error
}
}
如果您绝对要确保接收参数,则可以改用requireArguments()
。如果传递给片段的Bundle对象为null
,则会在运行时引发错误。但是,这不能防止您的所有参数都不为空(请参见上面的android文档链接),因此您必须像之前一样执行对您真正重要的检查:
@Override
public void onViewCreated(View view, @Nullable Bundle savedInstanceState) {
AddEditTaskFragmentArgs args = AddEditTaskFragmentArgs.fromBundle(requireArguments());
if (args.getTitle() != null) {
String title = args.getTitle();
} else {
// Title is null because it's a String, that we allowed nullable and because user did not set it
}
int id = args.getId(); // An int cannot be null and we specified a default value
// Check other arguments ...
}
希望有帮助:)