当我在mainActivity
中滚动时,我想打开活动:“喜欢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;
}