0

こんにちは、メイン メニューの [ヘルプ] ボタンを設計したアプリケーションに取り組んでいます。カスタマイズしたヘルプ イメージ ファイルを drawable フォルダーにコピーし、Help.xml ファイルを作成してレイアウトに埋め込みました。私の機能では、メイン メニューのこのヘルプ ボタンをクリックするだけで、ヘルプ イメージを含む help.xml がポップアップする必要があります。help をクリックしても何も起こりません。


Mainmenu.java

Button.OnClickListener mClickListener = new View.OnClickListener() {

        Animation anim = null;

        @Override
        public void onClick(View v) {
            Vibrator vibe = (Vibrator) getSystemService(Context.VIBRATOR_SERVICE);
            vibe.vibrate(60);

            switch (v.getId()) {
            case R.id.BtnDisplay:
                mpool.play(mlogon, 1, 1, 0, 0, 1);
                anim = new ScaleAnimation(0, 1, 0, 1, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
                anim.setDuration(100);
                mBtn1.startAnimation(anim);
                Intent intent = new Intent(NUGA_MainMenuActivity.this, FileSiganlDisplay.class);
                startActivity(intent);
                //overridePendingTransition(R.anim.zoom_enter,R.anim.zoom_exit);
                overridePendingTransition(R.anim.fade, R.anim.hold);
                break;

            case R.id.BtnSlave:

                mpool.play(mlogon, 1, 1, 0, 0, 1);
                anim = new ScaleAnimation(0, 1, 0, 1, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
                anim.setDuration(100);
                mBtn2.startAnimation(anim);
                Intent intent1 = new Intent(NUGA_MainMenuActivity.this, BTSmartSlavemodule.class);
                startActivity(intent1);
                //overridePendingTransition(R.anim.zoom_enter, R.anim.zoom_exit);
                overridePendingTransition(R.anim.fade, R.anim.hold);

                break ;
            case R.id.takeashot:
                //snapFunction();
                Intent intent2=new Intent(NUGA_MainMenuActivity.this,ImagesActivity.class);
                startActivity(intent2);
                break;

            case R.id.takehelp :
                Intent intent3=new Intent(NUGA_MainMenuActivity.this,HelpActivity.class);
                startActivity(intent3);
                break;

            default:
                break;
            }

        }
    };

-------------------------------------------------------------------------------------------------

メインメニュー.xml

</LinearLayout>

    <Button
        android:id="@+id/BtnSlave"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dip"
        android:layout_marginRight="10dip"
        android:gravity="center_vertical|center_horizontal"
        android:text="@string/mes_mod_linked"
        android:background="@color/btn_red"
        android:textColor="#315683"
        android:textSize="30px" />

    <Button
        android:id="@+id/takeashot"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:gravity="center_vertical|center_horizontal"
        android:text="@string/History"
        android:layout_marginLeft="10dip"
        android:layout_marginRight="10dip"
         android:background="@color/btn_purple"
        android:textColor="#315683"
        android:textSize="30px" />

    <Button
        android:id="@+id/takehelp"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:gravity="center_vertical|center_horizontal"
        android:text="@string/Help"
        android:layout_marginLeft="10dip"
        android:layout_marginRight="10dip"
         android:background="@color/btn_yellow"
        android:textColor="#315683"
        android:textSize="30px" />

</LinearLayout>

help.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/mainbackground"
    android:orientation="vertical" >

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:background="@drawable/helppicture" />

</LinearLayout>

ヘルプ活動

public class HelpActivity extends Activity{

    Button button1 ; 
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.help);

    }



}

何を見逃したのかわかりません....助けてください

4

2 に答える 2

1

こうすれば

public class Mainmenu extends Activity{

    Button button1 ; 
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.help);


       Button BtnSlave = (Button)findViewById(R.id.BtnSlave);
       Button takeashot=(Button)findViewById(R.id.takeashot);
       Button takehelp=(Button)findViewById(R.id.takehelp);

       BtnSlave.setOnClickListener(mClickListener);
       takeashot.setOnClickListener(mClickListener);
       takehelp.setOnClickListener(mClickListener);
    }



}
于 2013-09-10T04:33:27.907 に答える
0

onCreate()以下のように、ClickListener のボタンを登録する必要があります。

    button1=(Button)findViewById(R.id.BtnSlave); 
      button2=(Button)findViewById(R.id.takehelp);  
      button3=(Button)findViewById(R.id.takeashot);  
        button1.setOnClickListener(mClickListener);
       button2.setOnClickListener(mClickListener);
       button3.setOnClickListener(mClickListener);

その後、 onCreate() の外側に書き込みます

       OnClickListener mClickListener = new View.OnClickListener() {
              .................
            //your logic.
           switch (v.getId()) {
        case R.id.BtnDisplay:

         break;

        case R.id.BtnSlave:

             break ;
        case R.id.takeashot:
          }
于 2013-09-10T04:31:40.633 に答える