ȸ¿ø°¡ÀԡžÆÀ̵ð/ºñ¹øÃ£±â
ȨÀ¸·Î
Android Speech To Text
6³â Àü
http://upadhyayjiteshandroid.blogspot.kr/2013/01/android-speech-to-text.html


make  a  project  with  name  SpeechToTextDemo  and  a  main  activity  with  the  name  MainActivity  and  copy  the  following  code  to  it


import  java.util.ArrayList;

import  android.app.Activity;
import  android.content.ActivityNotFoundException;
import  android.content.Intent;
import  android.os.Bundle;
import  android.speech.RecognizerIntent;
import  android.view.Menu;
import  android.view.View;
import  android.widget.ImageButton;
import  android.widget.TextView;
import  android.widget.Toast;

public  class  MainActivity  extends  Activity  {

  protected  static  final  int  RESULT_SPEECH  =  1;

  private  ImageButton  btnSpeak;
  private  TextView  txtText;

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

    txtText  =  (TextView)  findViewById(R.id.txtText);

    btnSpeak  =  (ImageButton)  findViewById(R.id.btnSpeak);

    btnSpeak.setOnClickListener(new  View.OnClickListener()  {

      public  void  onClick(View  v)  {

        Intent  intent  =  new  Intent(
            RecognizerIntent.ACTION_RECOGNIZE_SPEECH);

        intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,  "en-US");

        try  {
          startActivityForResult(intent,  RESULT_SPEECH);
          txtText.setText("i  love  you");
        }  catch  (ActivityNotFoundException  a)  {
          Toast  t  =  Toast.makeText(getApplicationContext(),
              "Ops!  Your  device  doesn't  support  Speech  to  Text",
              Toast.LENGTH_SHORT);
          t.show();
        }
      }
    });

  }

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

  @Override
  protected  void  onActivityResult(int  requestCode,  int  resultCode,  Intent  data)  {
    super.onActivityResult(requestCode,  resultCode,  data);

    switch  (requestCode)  {
    case  RESULT_SPEECH:  {
      if  (resultCode  ==  RESULT_OK  &&  null  !=  data)  {

        ArrayList<String>  text  =  data
            .getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS);

        txtText.setText(text.get(0));
      }
      break;
    }

    }
  }
}

activity_main.xml  is  the  layout  where  you  need  to  copy  the  following  layout  to  it

<LinearLayout  xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_above="@+id/textView1"
        android:layout_toLeftOf="@+id/textView1"
        android:gravity="center"
        android:orientation="vertical"  >

        <ImageButton
                android:id="@+id/btnSpeak"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_margin="10dp"
                android:layout_marginRight="10dp"
                android:layout_marginTop="10dp"
                android:contentDescription="@string/speak"
                android:src="@android:drawable/ic_btn_speak_now"  />

        <TextView
                android:id="@+id/txtText"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="10dp"
                android:layout_marginRight="10dp"
                android:layout_marginTop="10dp"
                android:textAppearance="?android:attr/textAppearanceLarge"  />

</LinearLayout>
ÃßõÃßõ : 188 Ãßõ ¸ñ·Ï
¹øÈ£ Á¦¸ñ
1,340
 cmd ¸í·É¾î (¸í·É ÇÁ·ÒÇÁÆ® ¸í·É¾î) ¸ðÀ½
1,339
 Windows10 ƯÁ¤ ÇÁ·Î±×·¥(OCS 2007 R2)¿¡¼­ ÷ºÎÆÄÀÏ µå·¡±×¾Øµå·ÓÀÌ ¾È µÇ´Â Çö»ó
1,338
 À©µµ¿ì ·Î±×, °ü¸® À̺¥Æ® »èÁ¦
1,337
 Å¬¸° ºÎÆÃ
1,336
 Windows ±¸¼º ¿ä¼Ò ÀúÀå¼Ò¿¡¼­ ÆÄÀÏ ¼Õ»ó °Ë»ç
1,335
 Windows Defender °Ë»ç ±â·Ï »èÁ¦Çϱâ
1,334
 °£´ÜÇÑ À©µµ¿ì 10 Á¤Ç° ÀÎÁõ (Å©·¢ÇÁ·Î±×·¥ ÇÊ¿ä¾øÀ½)
1,333
 ¿À·ù³­ Æú´õ °­Á¦»èÁ¦ ¹æ¹ý
1,332
 Å©·Ò¿¡¼­ Ç÷¡½Ã Ç×»ó Çã¿ëÇϵµ·Ï ¼³Á¤Çϱâ (·¹Áö½ºÆ®¸®) reg ÆÄÀÏ ¸¸µé±â
1,331
 GPT µð½ºÅ©¸¦ MBR µð½ºÅ©·Î º¯È¯
1,330
 MBR µð½ºÅ©¸¦ GPT µð½ºÅ©·Î º¯È¯
1,329
 ±¸±Û °Ë»öÀ» 200% Ȱ¿ëÇÏ°Ô ÇØÁÖ´Â °Ë»ö ¸í·É¾î ÃÑÁ¤¸®
1,328
 [Jquery] jQuery·Î ¿ìŬ¸¯ ¹æÁö, µå·¡±× ¹æÁö, ¼±Åà ¹æÁö (IE10, ÆÄÀÌ¾îÆø½º, Å©·Ò È®ÀÎ)
1,327
 php »ç¿ëÀÚ Á¢¼ÓIP, ºê¶ó¿ìÀúÁ¤º¸, osÁ¤º¸, http, https Á¢¼ÓÇÁ·ÎÅäÄÝ ¾Ë¾Æ¿À±â
1,326
 [PHP] IE ºê¶ó¿ìÀú Á¢¼Ó °ËÃâÇϱâ
1,325
 À©µµ¿ì10 ½Ã½ºÅÛ ¿¹¾à ÆÄƼ¼Ç È®ÀÎ ¹× »èÁ¦
1,324
 À©µµ¿ì10 º¹±¸ ÆÄƼ¼Ç »èÁ¦ ¹æ¹ý
1,323
 À©µµ¿ì10 ºÎÆÃÁö¿¬ °ËÀºÈ­¸é¿¡¼­ ¸îºÐ°£ ¸Ó¹«´Â Çö»ó ÇØ°á¹æ¹ý
1,322
 »ï¼º³ëÆ®ºÏ ¹ÙÀÌ¿À½º ÁøÀÔÀÌ ºÒ°¡´ÉÇÑ °æ¿ì ¹ÙÀÌ¿À½º À缳ġ¿Í NVRAM ÃʱâÈ­
1,321
 ÀͽºÇ÷η¯(IE)ÀÇ ±¸±Û °Ë»ö°ø±ÞÀÚ Çѱ۷Πº¯°æ ¹æ¹ý
1,320
 À©µµ¿ì 10 ±âº» ¾Û »èÁ¦ ¹× º¹±¸
1,319
 meta ÅÂ±× http-equiv ¼³Á¤¹æ¹ý°ú Â÷ÀÌÁ¡
1,318
 ±¸±Û(Google)°Ë»ö¿¡¼­ °í±Þ¿¬»êÀÚ¸¦ ÀÌ¿ëÇÏ¿© ¸¹Àº Á¤º¸¸¦ ¾ò´Â ¹æ¹ý
1,317
 ÇÁ·Î±×·¥ ¾øÀÌ Çϵåµð½ºÅ© º¹»ç ¹× ¹é¾÷Çϱâ
1,316
 Windows7 ¾÷µ¥ÀÌÆ® ±â·Ï »èÁ¦¹æ¹ý
1,315
 Æ÷Åä¼¥ psd ÆÄÀÏ ¿¬°á ·¹Áö½ºÆ®¸®(registry) ÆíÁý
1,314
 À©µµ 10 Ãֽо÷µ¥ÀÌÆ® ÈÄ ÀÎÅÍ³Ý ¼ÓµµÀÇ ÀúÇϰ¡ ¹ß»ýÇÒ ¶§ Á¶Ä¡ »çÇ×
1,313
 Autotuning level ÇØÁ¦ (À©µµ¿ìºñ½ºÅ¸ ÀÌ»ó À©µµ¿ì)ÀÎÅÍ³Ý ¼Óµµ ºü¸£°Ô ÇÏ´Â ¹æ¹ý
1,312
 À©µµ¿ì¿¡¼­ ƯÁ¤ÇÁ·Î¼¼½º¸¦ Àϰý Á¾·áÇϴ¹ý
1,311
 MediaPlayer Ŭ·¡½º »ç¿ë¹ý
¸ñ·Ï
¹ÂÁ÷Æ®·ÎÆ® ºÎ»ê±¤¿ª½Ã ºÎ»êÁø±¸ °¡¾ßµ¿ ¤Ó °³ÀÎÁ¤º¸Ãë±Þ¹æÄ§
Copyright (C) musictrot All rights reserved.