0

我有一个带有两个按钮的主页。Button1 加载 Activity2.class(显示地图)和 Button2 加载 Login.class(显示登录表单)。

Button1 正在工作,但 Button2 在单击时不执行任何操作。我只是看不出区别,我对两个按钮使用完全相同的代码结构。也许我错过了不同文件中的某些内容?

这个android的东西对我来说是全新的,希望有人能帮忙!

这是我的代码(没有错误)

主要活动。

public class AppActivity extends Activity {

Button button;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    addListenerOnButton();
}

public void addListenerOnButton() {

    final Context context = this;

    button = (Button) findViewById(R.id.button1);

    button.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View arg0) {

            Intent intent = new Intent(context, App2Activity.class);
            startActivity(intent);   

        }

    });



}

public void addListenerOnButton2() {

    final Context context = this;

    button = (Button) findViewById(R.id.button2);

    button.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View arg0) {

            Intent intent = new Intent(context, Login.class);
            startActivity(intent);   

        }

    });

}
}

这是我想要访问的登录活动

public class Login extends Activity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        // setting default screen to login.xml
        setContentView(R.layout.login);

    }
}

登录.xml

<?xml version="1.0" encoding="utf-8"?>
<ScrollView
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  android:fillViewport="true">
  <RelativeLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" android:background="#ffffff">

    <LinearLayout
      xmlns:android="http://schemas.android.com/apk/res/android"
      android:orientation="vertical"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:padding="10dip">

      <!--  Email Label -->
      <TextView android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:textColor="#372c24"
            android:text="Student Number"/>
      <EditText android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="5dip"
            android:layout_marginBottom="20dip"
            android:singleLine="true"/>
      <!--  Password Label -->
      <TextView android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:textColor="#372c24"
            android:text="Password"/>
      <EditText android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="5dip"
            android:singleLine="true"
            android:password="true"/>
      <!-- Login button -->
      <Button android:id="@+id/btnLogin"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="10dip"
            android:text="Login"/>
    <!-- Login Form Ends -->
    </LinearLayout>

  </RelativeLayout>
</ScrollView>

清单文件

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

<uses-sdk android:minSdkVersion="10" />

<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name" >
    <activity
        android:label="@string/app_name"
        android:name=".AppActivity" >
        <intent-filter >
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:label="@string/app_name"
        android:name=".App2Activity" >
    </activity>
    <activity
        android:label="@string/app_name"
        android:name=".Login" >           
    </activity>
</application>

</manifest>
4

6 回答 6

3

你不打电话addListenerOnButton2();

于 2012-11-21T11:38:28.713 回答
0

在 AppActivity 类的 createMethod 上添加addListenerOnButton2()就像你添加 addListenerOnButton()

public class AppActivity extends Activity
{

Button button;

@Override
public void onCreate(Bundle savedInstanceState) 
{
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    addListenerOnButton();
    addListenerOnButton2();
}
于 2012-11-21T11:39:38.510 回答
0

缺少方法调用 addListenerOnButton2()

于 2012-11-21T11:39:47.057 回答
0

将您的代码块更改为以下内容

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
addListenerOnButton();
addListenerOnButton2();// you are not calling this method in your code
}
于 2012-11-21T11:40:22.283 回答
0

您永远不会在 onCreate() (或您发布的代码中的其他任何地方)中调用 addListenerOnButton2() 方法。

于 2012-11-21T11:40:28.100 回答
0

试试下面的代码。

 public class AppActivity extends Activity {

    Button button,button1;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

                button = (Button) findViewById(R.id.button1);
            button1 = (Button) findViewById(R.id.button2);

            button.setOnClickListener(new OnClickListener() {

                @Override
                public void onClick(View arg0) {

                    Intent intent = new Intent(AppActivity.this, App2Activity.class);
                    startActivity(intent);   

                }

            });

            button1.setOnClickListener(new OnClickListener() {

                @Override
                public void onClick(View arg0) {

                    Intent intent = new Intent(AppActivity.this, Login.class);
                    startActivity(intent);   

                }

            });
 }
于 2012-11-22T06:18:14.607 回答