片段中的网格视图

Posted

技术标签:

【中文标题】片段中的网格视图【英文标题】:Gridview in fragment 【发布时间】:2013-05-09 14:21:52 【问题描述】:

我试图在布局中使用GridView,但我的代码说我不能对非静态方法进行静态引用。我认为在Fragment 中使用GridViewActivity 相同

这是我的代码:

public static class MiscFragment extends Fragment 
    /**
     * The fragment argument representing the section number for this
     * fragment.
     */
    public static final String ARG_SECTION_NUMBER = "section_number";

    public MiscFragment() 
    

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) 
        View rootView = inflater.inflate(R.layout.misc_fragment,
                container, false);

        GridView gridview = (GridView) findViewById(R.id.gridview);
        return rootView;
    

然后我会将gridview 设置为Adapter。目前问题是由findViewById(R.id.gridview);引起的

【问题讨论】:

【参考方案1】:

您应该使用rootView.findViewById(R.id.gridview)

【讨论】:

以上是关于片段中的网格视图的主要内容,如果未能解决你的问题,请参考以下文章

网格视图中的行编辑 C#

片段内的网格适配器不起作用

单击特定网格视图单元格时淡出网格视图

颤振中的自定义高度网格视图

垂直网格视图中的重复卡片

禁用网格视图中的项目,存储应用程序