may i know the meaning of
public View getView(int position, View view, ViewGroup parent){
if (view ==null)
view = getLayoutInflater().inflate(R.layout.listview_item, parent, false);
}
- why it contain 3 parameter, wht is the meaning of those three param
- layout inflater it must work with view? why?
anyone can explain to me thank!