2012-03-12 8 views
13

मैं एंड्रॉइड में ध्वनि पहचान कोड को लागू करने की कोशिश कर रहा हूं। एंड्रॉइड में सरणी सूची से किसी विशेष स्थिति में तत्व कैसे प्राप्त करूं? मैंने arraylist को array में परिवर्तित करने और पुनः प्रयास करने का प्रयास किया। अभी भी कोड काम नहीं कर रहा है।एंड्रॉइड में सरणी सूची से तत्व पुनर्प्राप्त करना?

package com.espeaker; 


    public class EspeakerActivity extends Activity { 

        private static final int REQUEST_CODE = 1234; 
      private ListView wordsList; 


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


        Button speakButton = (Button) findViewById(R.id.speakButton); 

        wordsList = (ListView) findViewById(R.id.list); 

        // Disable button if no recognition service is present 
        PackageManager pm = getPackageManager(); 
        List<ResolveInfo> activities = pm.queryIntentActivities(
          new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH), 0); 
        if (activities.size() == 0) 
        { 
         speakButton.setEnabled(false); 
         speakButton.setText("Recognizer not present"); 
        } 
      } 

    /** 
    * Handle the action of the button being clicked 
    */ 
    public void speakButtonClicked(View v) 
    { 
     startVoiceRecognitionActivity(); 
    } 

    /** 
    * Fire an intent to start the voice recognition activity. 
    */ 
    private void startVoiceRecognitionActivity() 
    { 
     Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH); 
     intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, 
       RecognizerIntent.LANGUAGE_MODEL_FREE_FORM); 
     intent.putExtra(RecognizerIntent.EXTRA_PROMPT, "Voice recognition Demo..."); 
     startActivityForResult(intent, REQUEST_CODE); 
    } 

    /** 
    * Handle the results from the voice recognition activity. 
    */ 
    @Override 
    protected void onActivityResult(int requestCode, int resultCode, Intent data) 
    { 
     if (requestCode == REQUEST_CODE && resultCode == RESULT_OK) 
     { 
      // Populate the wordsList with the String values the recognition engine thought it heard 
      ArrayList<String> matches = data.getStringArrayListExtra(
        RecognizerIntent.EXTRA_RESULTS); 
      wordsList.setAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, 
        matches)); 
      String[] array=matches.toArray(new String[matches.size()]); 
      // ArrayList<String> places = new ArrayList<String>(
       // Arrays.asList("black", "blue", "red")); 
      ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, R.layout.list_item,matches); 
       final AutoCompleteTextView input_text = (AutoCompleteTextView) findViewById(R.id.auto); 
       Button button1 = (Button) findViewById(R.id.button1); 
        input_text.setAdapter(adapter); 
      button1.setText(" "+array[0]); 

      // button1.setText(""+matches); 
      } 
     super.onActivityResult(requestCode, resultCode, data); 
    } 
    } 
+0

आप "वास्तविक" कोड पोस्ट करने के बजाय कोड को अधिक सरल बना सकते थे। – Rakesh

उत्तर

2

ArrayList में आप एक स्थितीय आदेश और नहीं एक मामूली आदेश है, तो आप पहले से तत्व स्थिति में आप का चयन करने के लिए या आप आप जब तक तत्वों के बीच पाश तत्व यह है कि आप का उपयोग करने की जरूरत है पता लगाना चाहिए की जरूरत है पता करने की जरूरत । ऐसा करने के लिए आप उदाहरण के लिए, एक इटरेटर और एक करता है, तो उपयोग कर सकते हैं:

Iterator iter = list.iterator(); 
while (iter.hasNext()) 
{ 
    // if here   
    System.out.println("string " + iter.next()); 
} 
4
public class DemoActivity extends Activity { 
    /** Called when the activity is first created. */ 
    ArrayList<String> al = new ArrayList<String>(); 

    @Override 
    public void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.main); 



     // add elements to the array list 

     al.add("C"); 
     al.add("A"); 
     al.add("E"); 
     al.add("B"); 
     al.add("D"); 
     al.add("F"); 

     // retrieve elements from array 

     String data = al.get(pass the index here); 
     System.out.println("Data is "+ data); 

यह तत्व

 Iterator<String> it = al.iterator(); 
     while (it.hasNext()) { 
      System.out.println("Data is "+ it.next()); 
     } 
    } 
9

होने का एक और तरीका है क्या मैं आपके सवाल का समझते हैं कि आप चाहते हैं किसी विशिष्ट स्थान पर ArrayList में कोई तत्व लाने के लिए।

मान लें कि आपकी सूची में इंटेगर 1,2,3,4,5 हैं और आप मान 3 प्राप्त करना चाहते हैं। फिर कोड की निम्नलिखित पंक्तियां काम करेंगी।

ArrayList<Integer> list = new ArrayList<Integer>(); 
     if(list.contains(3)){//check if the list contains the element 
      list.get(list.indexOf(3));//get the element by passing the index of the element 
     } 

या तो तरीकों से आप इस्तेमाल कर सकते हैं list.get(list.lastIndexOf(3))

40

हो सकता है कि निम्नलिखित आप मदद करता है।

arraylistname.get(position); 
0

यू नहीं कर सकते कोशिश इस

for (WordList i : words) { 
    words.get(words.indexOf(i)); 
} 
0

मैं पुनः प्राप्त करने वालों के पदों की एक सूची है, यह मेरे लिए काम किया।

public void create_list_to_add_group(ArrayList<Integer> arrayList_loc) { 
    //In my case arraylist_loc is the list of positions to retrive from 
    // contact_names 
    //arraylist and phone_number arraylist 

    ArrayList<String> group_members_list = new ArrayList<>(); 
    ArrayList<String> group_members_phone_list = new ArrayList<>(); 

    int size = arrayList_loc.size(); 

    for (int i = 0; i < size; i++) { 

     try { 

      int loc = arrayList_loc.get(i); 
      group_members_list.add(contact_names_list.get(loc)); 
      group_members_phone_list.add(phone_num_list.get(loc)); 


     } catch (Exception e) { 
      e.printStackTrace(); 
     } 


    } 

    Log.e("Group memnbers list", " " + group_members_list); 
    Log.e("Group memnbers num list", " " + group_members_phone_list); 

} 
संबंधित मुद्दे