gpt4 book ai didi

android - 在 FragmentPagerAdapter 中使用上下文

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:11:56 24 4
gpt4 key购买 nike

我无法在 FragmentPagerAdapter 中使用上下文。 RadioGroup(this) 给我未定义的错误。我使用 getContext() 而不是这个但是无法实现它

private static class MyFragmentPagerAdapter extends FragmentPagerAdapter {  

final RadioGroup rg = new RadioGroup(this); // what can I use instead of "this" ?

}

最佳答案

我不确定你为什么要在 FragmentPagerAdapter 中实例化 RadioGroup,但无论如何你可以通过修改类的构造函数来获取上下文:

private Context context; 

/** Constructor of the class */
public MyFragmentPagerAdapter(FragmentManager fm, Context c) {
super(fm);
context = c;
}

然后您可以在创建 FragmentPagerAdapter 时添加上下文。

关于android - 在 FragmentPagerAdapter 中使用上下文,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16116322/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com