これは私のレイアウトです:
<?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