-2

これは私のレイアウトです:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@color/white" >

    <ImageButton
        android:id="@+id/one_button"
        android:layout_width="125dp"
        android:layout_height="125dp"
        android:layout_alignParentRight="true"
        android:layout_marginRight="20dp"
        android:layout_marginTop="20dp"
        android:background="@drawable/1"
        android:contentDescription="@string/by1" />

    <ImageButton
        android:id="@+id/two_button"
        android:layout_width="125dp"
        android:layout_height="125dp"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:layout_marginLeft="20dp"
        android:layout_marginTop="20dp"
        android:background="@drawable/2"
        android:contentDescription="@string/by2" />

    <ImageButton
        android:id="@+id/three_button"
        android:layout_width="125dp"
        android:layout_height="125dp"
        android:layout_alignParentLeft="true"
        android:layout_marginLeft="20dp"
        android:layout_marginTop="185dp"
        android:background="@drawable/3"
        android:contentDescription="@string/by3" />

    <ImageButton
        android:id="@+id/four_button"
        android:layout_width="125dp"
        android:layout_height="125dp"
        android:layout_alignParentRight="true"
        android:layout_marginRight="20dp"
        android:layout_marginTop="185dp"
        android:background="@drawable/4"
        android:contentDescription="@string/by4" />

</RelativeLayout>

そしてこれは私のコードです:

@Override
public void onClick(View v) {
    // TODO Auto-generated method stub

    switch (v.getId()) {
        case R.id.one_button :
            startActivity(new Intent("android.intent.action.GROUP"));
            break;
        case R.id.two_button :
            startActivity(new Intent("android.intent.action.ATOZ"));
            break;
        case R.id.three_button :
            startActivity(new Intent("android.intent.action.ATOZ"));
            break;
        default :
            break;
    }

}

さて、を押すone_buttonか、two_buttonすべてが期待どおりに機能しますが、を押すとthree_button何も起こりません。

私は何が間違っているのですか?

PS-two_button目的のアクティビティを開始するため、マニフェストは問題ありません。

ありがとう、

favolas

4

2 に答える 2

4

数字で始まるボタン名は使用できません

の代わりにButton Idsを何かに変更してみてください。button_11_button

それが動作します。

3番目のボタンにリスナーを追加しなかった可能性があります...

于 2012-07-27T11:14:58.157 に答える
3

3_buttonにonClickListenerを設定しましたか。

ImageButton btn=(ImageButton)findViewById(R.id.3_button);
btn.setOnClickListener(this);
于 2012-07-27T11:18:50.937 に答える