I am a beginner developer in Android:
Could you explain what layoutinflater does and can you explain what it is used for in general and especially in this code?
I have this code :
private class MyPagerAdapter extends PagerAdapter {
public int getCount() {
return 5;
}
public Object instantiateItem(View collection, int position) {
*** LayoutInflater inflater = (LayoutInflater) collection.getContext()
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
int resId = 0;
switch (position) {
case 0:
resId = R.layout.farleft;
break;
case 1:
resId = R.layout.left;
break;
case 2:
resId = R.layout.middle;
break;
case 3:
resId = R.layout.right;
break;
case 4:
resId = R.layout.farright;
break;
}
View view = inflater.inflate(resId, null);
((ViewPager) collection).addView(view, 0);
return view;
}
explain why I used in general and spacial in this code?Funny that we should explain you why you used it... also the documentation is pretty short and easy to understand. Have you even tried to read it? – WarrenFaith Feb 5 at 22:49