java 片段实例化器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 片段实例化器相关的知识,希望对你有一定的参考价值。

//This is a fairly standard way of instantiating a Fragment 
//The Bundle can be retrieved by calling getArguments()

public static YourCustomFragment newInstance(int input1, String input2){
        //Instantiate Fragment ye olde way
        YourCustomFragment fragment = new YourCustomFragment();
        //This Bundle is how we will pass our inputs
        Bundle args = new Bundle();
        //Pack our inputs into the bundle
        args.putLong("TheIntYouNeed", input1);
        args.putString("TheStringYouNeed", input2);
        
        fragment.setArguments(args);
        return fragment;
    }

以上是关于java 片段实例化器的主要内容,如果未能解决你的问题,请参考以下文章

java 动态片段实例化

Qt,QStandarItemModel:自定义QComboBox上的委托项从模型的实例化器填充其内容

solr分布式索引实战分片配置读取:工具类configUtil.java,读取配置代码片段,配置实例

java 代码片段

SpringMVC-- 09 自定义Converters

SpringMVC-- 09 自定义Converters