我正在使用以下方式构建片段:
public class MyFragment extends Fragment {
public MyFragment() { }
public static final myFragment newInstance(String string) {
myFragment fragment = new myFragment ();
Bundle bundle = new Bundle();
bundle.putString(string);
fragment.setArguments(bundle);
return fragment;
}
}
我想从newInstance
中的资源中获取变量,但getResources()
不是静态的。
除了将其作为参数传递给newInstance()
之外,还有其他方法可以访问它吗?