0

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

1 に答える 1

0

見る

http://developer.android.com/guide/components/activities.html#StartingAnActivity

http://developer.android.com/reference/android/content/Context.html#startActivity(android.content.Intent )

自分の活動から新しい活動を開始する方法を明確にする必要があります。

于 2013-01-24T00:03:21.673 に答える