मेनू आइटम पर क्लिक करना इवेंट - एंड्रॉइड को संभालना


123

मैं एक ऐसा इरादा बनाना चाहता हूं जो एक मेनू आइटम पर क्लिक करने के बाद एक नई गतिविधि शुरू करता है, लेकिन मुझे यकीन नहीं है कि यह कैसे करना है। मैं Android प्रलेखन के माध्यम से पढ़ रहा हूं, लेकिन मेरा कार्यान्वयन सही नहीं है..और सही दिशा में कुछ मार्गदर्शन करने से मदद मिलेगी। मैंने अपना कोड नीचे सूचीबद्ध किया है और मेरी समस्या क्षेत्रों पर टिप्पणी की है, मुझे लगता है कि मैं गलत पद्धति का उपयोग कर रहा हूं।

package com.jbsoft.SimpleFlashlight;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.*;
import android.view.MenuItem.OnMenuItemClickListener;
import android.widget.Button;
import android.widget.Toast;

public class SimpleFlashLightActivity extends Activity {


  Button GreenButton;   // Declare instances of buttons to use later
  Button BlueButton;

  private static final int OK_MENU_ITEM = Menu.FIRST;

  /** Called when the activity is first created. */
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    BlueButton = (Button) findViewById(R.id.bluebutton);
    BlueButton.setOnClickListener(new View.OnClickListener() {

      public void onClick(View v) {

        //Display msg when user clicks Blue Button
        showColorChangeMsg();

        // Switch Activities on click
        Intent blueintent = new Intent(SimpleFlashLightActivity.this,
                                       BlueFlashLightActivity.class);
        startActivity(blueintent);

      }
    });
    //Install listener for second button
    GreenButton = (Button) findViewById(R.id.greenbutton);
    GreenButton.setOnClickListener(new View.OnClickListener() {

      public void onClick(View v) {

        // Display msg when user clicks Green Button
        showColorChangeMsg();

        Intent greenintent = new        Intent(SimpleFlashLightActivity.this,
                                               GreenFlashLightActivty.class);
        startActivity(greenintent);

      }
    });

    ;

    /**************************************************************************************/

    // Method Declarations // THIS IS WHERE I'M HAVING A PROBLEM

    MenuItem AddColorButton = (MenuItem)findViewById(R.id.menu_insert);

    boolean onOptionsItemSelected(AddColorButton) {
      Intent intent = new  Intent(SimpleFlashLightActivity.this,
                                  BlueFlashLightActivity.class);
      startActivity(intent);
      return true;
      ;
    };
    /****************************************************************************************/

  }
  private void showColorChangeMsg()
  {
    Toast msgtoast = Toast.makeText(this.getBaseContext(), "SWITCH COLOR!",
                                    Toast.LENGTH_LONG);
    msgtoast.show();
  }
  private void showMsg(String msg) {
    Toast toast = Toast.makeText(this, msg, Toast.LENGTH_LONG);
    toast.show();
  }

  public boolean onCreateOptionsMenu(Menu menu) {
    super.onCreateOptionsMenu(menu);
    MenuInflater mi = getMenuInflater();
    mi.inflate(R.menu.list_menu, menu);
    return true;

  }

  @Override
  public boolean onOptionsItemSelected(MenuItem item) {
    switch (item.getItemId()) {
    case OK_MENU_ITEM:
      showMsg("OK");
      break;
    }
    return super.onOptionsItemSelected(item);
  }

}

जवाबों:


297

मेनू बनाने के लिए सरल कोड ।।

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    MenuInflater inflater = getMenuInflater();
    inflater.inflate(R.menu.game_menu, menu);
    return true;
}

मेनू के लिए सरल कोड चयनित

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // Handle item selection
    switch (item.getItemId()) {
    case R.id.new_game:
        newGame();
        return true;
    case R.id.help:
        showHelp();
        return true;
    default:
        return super.onOptionsItemSelected(item);
    }
}

अधिक विस्तार के लिए नीचे दिए गए लिंक पर जाएं ..

link1

link2


क्या Android: onClick विशेषता इस मामले में काम नहीं करती है अगर मैं इसे XML में डालूं? (बहुत शुरुआत करने वाला एंड्रॉइड प्रोग्रामर यहां)
फेटनुलर

@FateNuller विकल्प मेनू के लिए XML के अंदर क्लिक करें काम नहीं करेगा, यह लेआउट के लिए काम करेगा। आपको ऑक्शन बार विकल्प मेनू पर क्लिक करना चाहिए।
मार्को

लगातार अभिव्यक्ति की आवश्यकता है। एंड्रॉइड लाइब्रेरी मॉड्यूल में स्विच आईडी स्टेटमेंट में संसाधन आईडी का उपयोग नहीं किया जा सकता है ... एंड्रॉइड लाइब्रेरी मॉड्यूल में एक स्विच स्टेटमेंट में संसाधन आईडी का उपयोग करके मान्य हैं। एसडीके टूल्स r14 के बाद से लाइब्रेरी प्रोजेक्ट्स में रिसोर्स आईडी न के बराबर हैं, इसका मतलब है कि लाइब्रेरी कोड इन आईडी को कॉन्स्टेंट नहीं मान सकता।
जोन

13

निम्नलिखित कोड जोड़ें

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    switch (item.getItemId()) {
    case R.id.new_item:
        Intent i = new Intent(this,SecondActivity.class);
            this.startActivity(i);
            return true;
    default:
        return super.onOptionsItemSelected(item);
    }
}

5

मेनू आइटम फ़ाइल की तरह दिखता है

रेस / मेनू / menu_main.xml

<menu xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    tools:context=".MainActivity">
    <item
        android:id="@+id/settings"
        android:title="Setting"
        app:showAsAction="never" />
    <item
        android:id="@+id/my_activity"
        android:title="My Activity"
        app:showAsAction="always"
        android:icon="@android:drawable/btn_radio"/>
</menu>

Java कोड जैसा दिखता है

src / MainActivity.java

@Override
    public boolean onCreateOptionsMenu(Menu menu) {
present.
        getMenuInflater().inflate(R.menu.menu_main, menu);
        return true;
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        int id = item.getItemId();

      if (id == R.id.my_activity) {
            Intent intent1 = new Intent(this,MyActivity.class);
            this.startActivity(intent1);
            return true;
        }

        if (id == R.id.settings) {
            Toast.makeText(this, "Setting", Toast.LENGTH_LONG).show();
            return true;
        }

        return super.onOptionsItemSelected(item);
    }

और अपने AndroidManifest.xml फ़ाइल में निम्न कोड जोड़ें

<activity
            android:name=".MyActivity"
            android:label="@string/app_name" >
        </activity>

मुझे आशा है कि यह आपकी मदद करेगा।


3

यह कोड मेरे लिए काम करता है

@Override
public boolean onOptionsItemSelected(MenuItem item) {

    int id = item.getItemId();

     if (id == R.id.action_settings) {
  // add your action here that you want
        return true;
    }

    else if (id==R.id.login)
     {
         // add your action here that you want
     }


    return super.onOptionsItemSelected(item);
}

1

आपके प्रश्न में दिखाए गए विकल्पों के अलावा, मेनू से आपकी xml फ़ाइल में सीधे कार्रवाई को लागू करने की संभावना है, उदाहरण के लिए:

<item
   android:id="@+id/OK_MENU_ITEM"
   android:onClick="iraActivitySobre" />

और आपकी जावा (एक्टिविटी) फ़ाइल के लिए, आपको सार्वजनिक विधि को एक ही प्रकार के MenuItem के साथ लागू करना होगा, उदाहरण के लिए:

 private void showMsgDirectMenuXml(MenuItem item) {
    Toast toast = Toast.makeText(this, "OK", Toast.LENGTH_LONG);
    toast.show();
  }

नोट: इस पद्धति का व्यवहार onOptionsItemSelected (MenuItem आइटम) के समान होगा


0

अपने onOptionsItemSelectedरूप को बदलें :

  @Override
          public boolean onOptionsItemSelected(MenuItem item) {
            switch (item.getItemId()) {
              case OK_MENU_ITEM:
                 startActivity(new Intent(DashboardActivity.this, SettingActivity.class));
                 break;

            // You can handle other cases Here.
              default: 
                 super.onOptionsItemSelected(item);
            }
          }

यहाँ, मैं से नेविगेट करना चाहते DashboardActivity करने के लिए SettingActivity

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.