我正在實現自定義listview,我說我使用getView方法與ViewGroup,但我不知道什麼是ViewGroup的確切使用,任何人都可以解釋我有什麼用ViewGroup中,如果你舉個例子那麼這將是最好的ViewGroup在getView方法中的用法baseadapter
@Override
public View getView(int position, View convertView, ViewGroup parent) {
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View rowView = inflater.inflate(R.layout.rowlayout, parent, false);
此父的父是我們的列表視圖或的GridView .. – Pramod