开始意图的问题

时间:2013-05-06 13:54:55

标签: android android-intent

你好我一直在网上寻找答案,但我找不到任何东西......我很确定我在这里做的一切都是因为这可能是一个问题,因为我正在使用模拟器? 这是我的代码......我还将其他活动添加到清单文件......

package com.example.help;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;

public class GlavniIzbornik extends Activity {

Button settings;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_menu);
    settings = (Button)findViewById(R.id.bttnSettings);

    settings.setOnClickListener(new OnClickListener() {

        public void onClick(View v) {
            Intent settings = new Intent(GlavniIzbornik.this,TounamentSettings.class);
            GlavniIzbornik.this.startActivity(settings);
        }

    });
}

}

清单:

    <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.tournamentpro"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="17" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.tournamentpro.GlavniIzbornik"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity android:name="com.example.tournamentpro.TournamentSettings" ></activity>
    </application>

</manifest>

1 个答案:

答案 0 :(得分:1)

一切看起来都不错。记住那个

  1. TounamentSettings必须extends Activity
  2. TounamentSettings必须在AndroidManifest.xml
  3. 内声明