我想在我侧滚动时打开活动mainActivity
:“Like Playstore”。
我创建了 3 个活动,但我不知道如何插入到我的mainActivity
.
public CharSequence getPageTitle(int position) {
switch (position) {
case 0:
return getString(R.string.title_section1).toUpperCase();
/** Here I must add the code to open activity but I don't know how ;-) **/
case 1:
return getString(R.string.title_section2).toUpperCase();
case 2:
return getString(R.string.title_section3).toUpperCase();
}
return null;
}