please can anybody tell the basic difference between the following
setContentView(R.layout.content_main);
and
View row = layoutInflater.inflate(R.layout.view, parent, false);
from the above two method we get the view , and i know the second method generally use in Adapter to inflate the view.
But My question is ---
Can we use setContentView method in place of inflator to get the views in adapters... i am confused please help me out????
public void setContentView (View view)
: Is only used for setting theActivity
content to an explicit view.public View inflate (int resource, ViewGroup root, boolean attachToRoot)
: Used for inflating a new view hierarchy from the specified xml resource.You can't use setContentView(View view) in Adapter, it's exclusively available for
Activity
.