有只小跳蛙
protected ListView createListView(Context context, AttributeSet attrs) {final ListView lv;if (VERSION.SDK_INT >= VERSION_CODES.GINGERBREAD) {lv = new InternalListViewSDK9(context, attrs);} else {lv = new InternalListView(context, attrs);}return lv;}