文章详情页
android - 继承一个BaseAdapter类后重写了一些方法,但是这些方法在父类中找不到,这是为什么?
问题描述
继承BaseAdapter类
class MyAdapter extends BaseAdapter{@Overridepublic int getCount() { return 0;}@Overridepublic Object getItem(int position) { return null;}@Overridepublic long getItemId(int position) { return 0;}@Overridepublic View getView(int position, View convertView, ViewGroup parent) { return null;} }
这是父类中的方法
问题解答
回答1:因为这些方法是BaseAdapter从它的父类或者实现接口中继承来的,需要开启Show inherited才能在Structure中显示出来。
回答2:导包导错了。
回答3:BaseAdapter是个抽象类,实现了ListAdapter接口,getCount、getItem这几个方法都在ListAdapter接口里,但是BaseAdapter没写具体实现,所以你要继承BaseAdapter必须写这几个方法的实现。
回答4:子类中的方法 父类中当然找不着了,都不是一个类 。父类中的方法在子类中能找到。
排行榜