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;
}