-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_buttontwo_button一切按预期工作,但如果我按下three_button没有任何反应。

我究竟做错了什么?

PS - 清单没问题,因为two_button启动了所需的活动。

谢谢,

收藏夹

4

2 回答 2

4

按钮名称不能以数字开头

尝试将 更改Button Ids为 asbutton_1而不是1_button.

它会起作用的。

可能是您没有在第三个按钮上添加侦听器...

于 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 回答