这是我的布局:
<?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
则没有任何操作。
我做错了什么?
P.S。 - 清单正常,因为two_button
启动了所需的活动。
谢谢,
favolas
答案 0 :(得分:4)
您不能拥有以数字
开头的按钮名称尝试将Button Ids
改为button_1
而不是1_button
。
它会起作用。
你可能没有在第三个按钮上添加监听器......