我有一个带有ViewGroup的Activity,我想根据用户流程用一些片段替换它们(所以我要么显示一个片段,要么显示另一个片段。)
(...)
<FrameLayout
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="276dp"
android:layout_gravity="center_horizontal|bottom">
</FrameLayout>
(...)
要设置片段,我使用以下代码:
private void setBottomFragment(Fragment fragment) {
FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
transaction.replace(R.id.fragment_container, fragment);
transaction.addToBackStack(null);
transaction.commit();
}
如果我自己用new实例化片段,它可以工作:
setBottomFragment(new InformationFragment());
但是,我不想自己实例化它。我希望我的片段实例由我的依赖关系管理框架管理(我正在使用Roboguice)
所以我想做这样的事情:
@ContentView(R.layout.activity_scan)
public class ScanActivity extends RoboFragmentActivity {
@InjectFragment(R.id.information_fragment)
private InformationFragment informationFragment;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setBottomFragment(informationFragment);
}
}
通过这样做,我将能够在我的片段上使用依赖注入,而不必自己找到组件。
public class InformationFragment extends RoboFragment {
// I'll have an event handler for this button and I don't want to be finding it myself if I can have it injected instead.
@InjectView(R.id.resultButton)
private Button resultButton;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
// Inflate the layout for this fragment
return inflater.inflate(R.layout.fragment_information, container, false);
}
}
基本上我的问题是:如何在使用像Roboguice这样的依赖注入框架时以编程方式实例化片段?
我在Roboguice文档中找到的所有内容都是带有片段的DI示例,这些片段最初是使用视图呈现的,而不是之后动态添加的,就像我正在尝试的那样。这让我相信我在组件的生命周期或Roboguice处理DI的方式中缺少一些东西。
任何解决这个问题的想法或指向正确方向的指示都会非常有用。
答案 0 :(得分:0)
我自己找到答案,因为它可能对其他人有帮助,我会在这里发布。
它比我预期的要简单得多(也有点明显)。因为在首次加载活动时片段不是视图的一部分,所以我们不能使用@InjectFragment。应该使用@Inject,因此片段被视为任何其他非视图依赖项。
这意味着我的活动应如下所示:
@ContentView(R.layout.activity_scan)
public class ScanActivity extends RoboFragmentActivity {
@Inject // This is all that needs to change
private InformationFragment informationFragment;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setBottomFragment(informationFragment);
}
}
那么简单......