0

ボタンが 2 つあるホームページがあります。Button1 は Activity2.class (マップを表示する) をロードし、Button2 は Login.class (ログインフォームを表示する) をロードします。

Button1 は機能していますが、Button2 はクリックしても何もしません。違いがわかりません。両方のボタンにまったく同じコード構造を使用しています。別のファイルで何かを見逃したのでしょうか?

このアンドロイドのものは私にとってまったく新しいものです。誰かが助けてくれることを願っています!

これが私のコードです(エラーはありません)

主な活動。

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

この以下のコードを試してください。

 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 に答える
0

AppActivity クラスの on createMethod で add addListenerOnButton2() と同じように u add 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 に答える