<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Talking Twitter</title>
	<atom:link href="http://www.hdelossantos.com/2009/10/10/talking-twitter/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.hdelossantos.com/2009/10/10/talking-twitter/</link>
	<description>Tales of the Wisconsin Experience</description>
	<lastBuildDate>Tue, 24 Aug 2010 15:32:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
	<item>
		<title>By: pete</title>
		<link>http://www.hdelossantos.com/2009/10/10/talking-twitter/comment-page-1/#comment-13534</link>
		<dc:creator>pete</dc:creator>
		<pubDate>Wed, 13 Jan 2010 09:31:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.hdelossantos.com/?p=437#comment-13534</guid>
		<description>Thanks for the reply and code, i checked your androidmanifest.xml, i don&#039;t see entry for intent &quot;android.speech.action.RECOGNIZE_SPEECH&quot;. I want to invoke speech recognition intent in 2.1 emulator, i have simple code using for that.

==
public class HelloWorld extends Activity {
	
	private static final int SHOW_SUB_ACTIVITY_ZERO = 12367;
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
    	final Button listen_button = (Button) findViewById(R.id.Listen);
    	listen_button.setOnClickListener(new OnClickListener(){
    		public void onClick(View _view){
    			 final EditText myedittext = (EditText) findViewById(R.id.EditText01);
     	    	myedittext.setText(&quot;intent clicked&quot;);
    			try{
    	        Intent intent = new Intent(&quot;android.speech.action.RECOGNIZE_SPEECH&quot;);  
    	        startActivityForResult(intent, SHOW_SUB_ACTIVITY_ZERO);
    	       }
    			catch(Exception e){
    				myedittext.setText(e.getMessage());
    			}
    		}
    	});

        
    }
    @Override
    public void onActivityResult(int requestCode, int resultCode, Intent data){
    	super.onActivityResult(requestCode,resultCode,data);
    	
    	if (requestCode == SHOW_SUB_ACTIVITY_ZERO &amp;&amp; resultCode == Activity.RESULT_OK){
    	//ArrayList results = data.getExtras().getStringArrayList(RecognizerIntent.EXTRA_RESULTS);
    	ArrayList matches = data.getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS);
    	String speak = matches.toString();
    	final EditText myedittext = (EditText) findViewById(R.id.EditText01);
    	myedittext.setText(speak);
    	
    	}
    	
    }
}
===

And not sure what entry needed in manifest xml  file.

Any help appreciated. 

Thanks in advance.</description>
		<content:encoded><![CDATA[<p>Thanks for the reply and code, i checked your androidmanifest.xml, i don&#8217;t see entry for intent &#8220;android.speech.action.RECOGNIZE_SPEECH&#8221;. I want to invoke speech recognition intent in 2.1 emulator, i have simple code using for that.</p>
<p>==<br />
public class HelloWorld extends Activity {</p>
<p>	private static final int SHOW_SUB_ACTIVITY_ZERO = 12367;<br />
    /** Called when the activity is first created. */<br />
    @Override<br />
    public void onCreate(Bundle savedInstanceState) {<br />
        super.onCreate(savedInstanceState);<br />
        setContentView(R.layout.main);<br />
    	final Button listen_button = (Button) findViewById(R.id.Listen);<br />
    	listen_button.setOnClickListener(new OnClickListener(){<br />
    		public void onClick(View _view){<br />
    			 final EditText myedittext = (EditText) findViewById(R.id.EditText01);<br />
     	    	myedittext.setText(&#8220;intent clicked&#8221;);<br />
    			try{<br />
    	        Intent intent = new Intent(&#8220;android.speech.action.RECOGNIZE_SPEECH&#8221;);<br />
    	        startActivityForResult(intent, SHOW_SUB_ACTIVITY_ZERO);<br />
    	       }<br />
    			catch(Exception e){<br />
    				myedittext.setText(e.getMessage());<br />
    			}<br />
    		}<br />
    	});</p>
<p>    }<br />
    @Override<br />
    public void onActivityResult(int requestCode, int resultCode, Intent data){<br />
    	super.onActivityResult(requestCode,resultCode,data);</p>
<p>    	if (requestCode == SHOW_SUB_ACTIVITY_ZERO &amp;&amp; resultCode == Activity.RESULT_OK){<br />
    	//ArrayList results = data.getExtras().getStringArrayList(RecognizerIntent.EXTRA_RESULTS);<br />
    	ArrayList matches = data.getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS);<br />
    	String speak = matches.toString();<br />
    	final EditText myedittext = (EditText) findViewById(R.id.EditText01);<br />
    	myedittext.setText(speak);</p>
<p>    	}</p>
<p>    }<br />
}<br />
===</p>
<p>And not sure what entry needed in manifest xml  file.</p>
<p>Any help appreciated. </p>
<p>Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hanly</title>
		<link>http://www.hdelossantos.com/2009/10/10/talking-twitter/comment-page-1/#comment-13532</link>
		<dc:creator>Hanly</dc:creator>
		<pubDate>Wed, 13 Jan 2010 06:27:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.hdelossantos.com/?p=437#comment-13532</guid>
		<description>Hey Pete. I&#039;m assuming you are developing for an Android version greater than 1.5 since voice recognition was introduced to the API in 1.6 I believe. This code was written for the 1.5 SDK so in order to achieve speech recognition I&#039;m using the TTS_library_stub_1.4_market.jar library (which is in version 2.1 now) as well as having the TTS application installed on the android itself. This didn&#039;t require any additions to the XML file to make voice recognition work.

I&#039;m sorry I couldn&#039;t be of much help. I&#039;ll be writing and posting up a detailed tutorial on how to do this natively with the Android APIs. If it helps, I&#039;ve uploaded the full source code, which you can download &lt;a href=&quot;http://www.hdelossantos.com/school_content/sample_code/TwitterActivity.zip&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>Hey Pete. I&#8217;m assuming you are developing for an Android version greater than 1.5 since voice recognition was introduced to the API in 1.6 I believe. This code was written for the 1.5 SDK so in order to achieve speech recognition I&#8217;m using the TTS_library_stub_1.4_market.jar library (which is in version 2.1 now) as well as having the TTS application installed on the android itself. This didn&#8217;t require any additions to the XML file to make voice recognition work.</p>
<p>I&#8217;m sorry I couldn&#8217;t be of much help. I&#8217;ll be writing and posting up a detailed tutorial on how to do this natively with the Android APIs. If it helps, I&#8217;ve uploaded the full source code, which you can download <a href="http://www.hdelossantos.com/school_content/sample_code/TwitterActivity.zip" rel="nofollow">here</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pete</title>
		<link>http://www.hdelossantos.com/2009/10/10/talking-twitter/comment-page-1/#comment-13528</link>
		<dc:creator>pete</dc:creator>
		<pubDate>Tue, 12 Jan 2010 11:17:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.hdelossantos.com/?p=437#comment-13528</guid>
		<description>Howdy, thanks for the post, i am struggling with androidmanifest.xml for voice recognition intent, can you post activity tag for  that? thanks for post,i enjoyed it.</description>
		<content:encoded><![CDATA[<p>Howdy, thanks for the post, i am struggling with androidmanifest.xml for voice recognition intent, can you post activity tag for  that? thanks for post,i enjoyed it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: speech recognition &#171; pilsna</title>
		<link>http://www.hdelossantos.com/2009/10/10/talking-twitter/comment-page-1/#comment-13501</link>
		<dc:creator>speech recognition &#171; pilsna</dc:creator>
		<pubDate>Wed, 09 Dec 2009 19:25:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.hdelossantos.com/?p=437#comment-13501</guid>
		<description>[...] Talking Twitter http://www.hdelossantos.com/2009/10/10/talking-twitter/ [...]</description>
		<content:encoded><![CDATA[<p>[...] Talking Twitter <a href="http://www.hdelossantos.com/2009/10/10/talking-twitter/" rel="nofollow">http://www.hdelossantos.com/2009/10/10/talking-twitter/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stacie</title>
		<link>http://www.hdelossantos.com/2009/10/10/talking-twitter/comment-page-1/#comment-13497</link>
		<dc:creator>Stacie</dc:creator>
		<pubDate>Sat, 17 Oct 2009 15:13:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.hdelossantos.com/?p=437#comment-13497</guid>
		<description>OMG!!!

NERD! 

Seriously though, that&#039;s REALLY cool!</description>
		<content:encoded><![CDATA[<p>OMG!!!</p>
<p>NERD! </p>
<p>Seriously though, that&#8217;s REALLY cool!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.631 seconds -->
