1. Example description
- Viewpager implements slide switching, but the switching pages only call different layout. In fact, it is still in an activity and it is not convenient to compile functions. Therefore, you can use tabhost and viewpager to switch activity with tabhost, and use viewpager to switch the interface to improve the switching effect.
- The principle is to hide the original tabcontent in the tabhost and add a viewpager to capture events and then refresh each other.
2. Running result
3. CoreCode
Tabhost. setontabchangedlistener (New ontabchangelistener () {@ overridepublic void ontabchanged (string Tabid) {tabhost. setontabchangedlistener (New ontabchangelistener () {@ override public void ontabchanged (string Tabid) {If ("". equals (Tabid) {pager. setcurrentitem (0);} If ("B ". equals (Tabid) {pager. setcurrentitem (1);} If ("C ". equals (Tabid) {pager. setcurrentitem (2) ;}}}) ;}}); pager. setadapter (New mypageadapter (listviews); pager. setonpagechangelistener (New onpagechangelistener () {@ overridepublic void onpageselected (INT position) {tabhost. setcurrenttab (position) ;}@ overridepublic void onpagescrolled (INT arg0, float arg1, int arg2) {}@ overridepublic void onpagescrollstatechanged (INT arg0 ){}});
4. Video description
Http://www.eyeandroid.com/thread-11826-1-1.html