使TextView单击下一页

时间:2015-11-11 14:28:27

标签: java android onclick textview onclicklistener

我希望能够单击TextView,然后将其引导到一个显示多级可扩展列表的新页面。

我创建了可扩展列表,并为它创建了一个新的MainActivity.java文件,因为它扩展了与主页不同的内容

我的清单看起来像这样

<activity
        android:name=".MainActivity"
        android:layout_gravity="center"
        android:label="Home"
        android:theme="@style/AppTheme.NoActionBar" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

    <!-- name defines the class that handles setting up the Activity
         label will be the title for the activity
         theme defines the theme to use -->
    <activity android:name=".NLevelList"
        android:label="Advanced Search"
        android:theme="@style/AppTheme" />

我知道我需要使用onClick侦听器并在MainActivity中使用onClick方法,但我整个上午都在使用它并且我不明白该怎么做,有人可以告诉我该怎么做

2 个答案:

答案 0 :(得分:1)

触发听众启动新活动的意图。

myTextView.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View v) {
        Intent intent = new Intent(MainActivity.this, NLevelList.class);
        startActivity(intent);
    }
});

答案 1 :(得分:0)