public class menu extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.main_activity_page);
{
Button but1 = (Button)findViewById(R.id.imageButton4);
but1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
startActivity(new Intent("com.indore.indoreindicator.Busone"));
}
});
}
}
@Override
protected void onPause() {
// TODO Auto-generated method stub
super.onPause();
}
}
メニュークラスからこのコード行があります
ブソンクラス -
package com.indore.indoreindicator;
import android.app.Activity;
import android.os.Bundle;
public class Busone extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.busmenu);
}
}
Android マニフェスト ファイル
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.indore.indoreindicator"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.indore.indoreindicator.MainActivityPage"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".menu"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.Menu" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".Busone"
android:label="@string/app_name" >
<intent-filter>
<action android:name="com.indore.indoreindicaotr.Busone" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
</manifest>
主な活動ページ -
<ImageButton
android:id="@+id/imageButton4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginTop="47dp"
android:layout_toLeftOf="@+id/TextView05"
android:src="@drawable/bus"
tools:ignore="ContentDescription" />
アプリケーションは起動しますが、スプラッシュ スクリーンの後で失敗し、最初のページに移動できません。しかし、ボタンのコーディング部分にコメントすると、アプリケーションはメニューページに移動します。
マイ メニュー ページからバス メニューという名前の 2 番目のページに移動できないのはなぜですか?