这是我的布局:
<?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
启动了所需的活动。
谢谢,
收藏夹