0
  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 番目のページに移動できないのはなぜですか?

4

4 に答える 4

2

使ってみるべきです

startActivity(new Intent(getApplicationContext(), Busone.class);

それ以外の

startActivity(new Intent("com.indore.indoreindicator.Busone"));

于 2013-02-09T12:08:45.507 に答える
1

レイアウトを切り替えるだけの場合は、setOnClickListener

setContentView(R.layout.whatevername);

そして、この後に imageview 、 button などのレイアウトを追加するだけです。そのレイアウト固有の子に別の onClick を追加する必要がある場合にのみ行ってください! アクティビティ「クラス」を切り替えたい場合は、

Intent intent = new Intent(getApplication(), SecondClass.class);
startActivity(intent);

Androidマニフェストに他のアクティビティを追加することを忘れないでください

<activity android:name=".SecondClass"/> 

あなたのコードに基づいて

編集を参照してください!!!

  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);
    **{** // why this is here ?????
    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"));

        }
    });
    **}** // why this is here ????
}

@Override
protected void onPause() {
    // TODO Auto-generated method stub
    super.onPause();
}


   }
于 2013-02-09T12:44:19.600 に答える
0

これを試して:

startActivity(new Intent(menu.this, Busone.class));
于 2013-02-09T12:07:13.167 に答える
0

何を説明しようとしているのかわかりませんが、xml レイアウトで画像ボタンを使用し、メニュー クラスで通常のボタンを使用していることがわかります。画像ボタンを使用する必要はありません。android:background を使用して、「通常の」ボタンに画像を設定するだけです。

于 2013-02-09T12:16:23.263 に答える