1.检查getCount返回值为是否为0,为0则不执行;
2.检查该控件在布局中的空间位置,比如高度为0dp则不执行;
3.要确认adapter在核实的时间和位置去实例化,比如说在异步任务的onPostExecute()方法中去实例化adapter的话,甚至会导致该方法也不会被执行到,当然getview更执行不到了;
4.在Fragment中使用GridView,要注意不能在Fragment 所依附的Activity中去初始化Adapter,如:
View view= getLayoutInflater().inflate((R.layout.fragment_three), null);
grid_photo = (GridView)view.findViewById(R.id.grid_photo);
要在该Fragment 的类中去初始化该适配器,如:
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, Bundle savedInstanceState) {
rootView = inflater.inflate(R.layout.fragment_three,null);
GameView gameView = new GameView();
gameView.initGameView();
return rootView;
}
希望可以帮到你,如果描述有误,还请批评指正,不吝赐教!