我试图GridView
在布局中使用 a 但我的代码说我不能对非静态方法进行静态引用。我认为GridView
在 a 中使用 aFragment
将与 an 相同Activity
这是我的代码:
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);