I have a listactivity where I read/set diferent controls such as textviews, buttons or listviews in OnCreate method and also I use diferents methods of this controls inside onCreate method. Now that I know that everything works well I would like to introduce a viewpager so I can fling between diferent layers.
I have read that I have to include my code into public Object instantiateItem of my pageadapter but there are some methods that are not recognised:
How can they be recognised?
getListView
ListView listVi = (ListView) view.findViewById(R.id.list);
listVi.setAdapter(adapter);
getResources
view.getResources()
getString
view.getResources().getString()
When I use the list, I said that onCreate method, the context for the list was this. Now which context do I have to put?
view.getContext();
PS. view is the View variable where I inflate the layer.