创建要打开的活动

时间:2013-01-23 21:55:03

标签: android android-activity

当我在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;
}