注入框架RoboGuice使用:(Your First Injected Fragment)

Posted llguanli

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了注入框架RoboGuice使用:(Your First Injected Fragment)相关的知识,希望对你有一定的参考价值。

? ??上一篇我们简单的介绍了一下RoboGuice的使用(【七】注入框架RoboGuice使用:(Your First Custom Binding)),今天我们来看下fragment的注解

? ?(一):简单介绍:和Activity一样,我们也相同能够在Fragment中使用注解,你须要一下的步骤.

? ? ? ? ? ①:编写一个继承与RoboFragment的Fragment;

? ? ? ? ? ②:设置你的布局(假设使用View注入)

? ? ? ? ? ③:注入你的View空间,资源文件(Resources),对象等等

? ?(二):样例:

public class MyFragment extends RoboFragment {
    // Inject your view
    @InjectView(R.id.text1) TextView nameTextView;

    // Inflate your view as you normally would for any fragment...
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        return inflater.inflate(R.layout.my_layout, container, false);
    }
  }
? ?(三):兼容

? 如今RoboGuice 3.0版本号已经支持原生以及兼容Fragment,他们分别位于包名例如以下:

  • package?roboguice.fragment?(for support fragments)
  • package?roboguice.fragment.provided?(for native android SDK 11+ fragments)

以上是关于注入框架RoboGuice使用:(Your First Injected Fragment)的主要内容,如果未能解决你的问题,请参考以下文章

RoboGuice注入框架简单应用

注入框架RoboGuice使用:(A brief example of what RoboGuice does)

在 Roboguice 中使用依赖注入?

Android RoboGuice开源框架Butter Knife开源框架浅析

Android片段和依赖注入

Android 片段和依赖注入