<?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: How to create an option menu</title>
	<atom:link href="http://www.droidnova.com/how-to-create-an-option-menu,427.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.droidnova.com/how-to-create-an-option-menu,427.html</link>
	<description>Rapid android development from Berlin</description>
	<lastBuildDate>Sat, 04 Feb 2012 17:50:52 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Zohar</title>
		<link>http://www.droidnova.com/how-to-create-an-option-menu,427.html/comment-page-2#comment-2545</link>
		<dc:creator>Zohar</dc:creator>
		<pubDate>Wed, 01 Feb 2012 15:19:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.droidnova.com/?p=427#comment-2545</guid>
		<description>Thanks, very good tutorial !  :)</description>
		<content:encoded><![CDATA[<p>Thanks, very good tutorial !  <img src='http://www.droidnova.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin</title>
		<link>http://www.droidnova.com/how-to-create-an-option-menu,427.html/comment-page-2#comment-2514</link>
		<dc:creator>Martin</dc:creator>
		<pubDate>Mon, 23 Jan 2012 09:48:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.droidnova.com/?p=427#comment-2514</guid>
		<description>Without an error I can&#039;t give a solution. Maybe you check if the icon is the correct one? If you use a new android version, try drawable.ic_launcher instead of drawable.icon...</description>
		<content:encoded><![CDATA[<p>Without an error I can&#8217;t give a solution. Maybe you check if the icon is the correct one? If you use a new android version, try drawable.ic_launcher instead of drawable.icon&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Prakash</title>
		<link>http://www.droidnova.com/how-to-create-an-option-menu,427.html/comment-page-2#comment-2513</link>
		<dc:creator>Prakash</dc:creator>
		<pubDate>Mon, 23 Jan 2012 09:44:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.droidnova.com/?p=427#comment-2513</guid>
		<description>Hi first of all thanks for your tutorial..
I have tried with your coding but i unable load the icon in menu item. Could any one please tell me the solution?</description>
		<content:encoded><![CDATA[<p>Hi first of all thanks for your tutorial..<br />
I have tried with your coding but i unable load the icon in menu item. Could any one please tell me the solution?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Palomo2</title>
		<link>http://www.droidnova.com/how-to-create-an-option-menu,427.html/comment-page-2#comment-2414</link>
		<dc:creator>Palomo2</dc:creator>
		<pubDate>Thu, 29 Dec 2011 14:04:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.droidnova.com/?p=427#comment-2414</guid>
		<description>Great, thanks!</description>
		<content:encoded><![CDATA[<p>Great, thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brandon</title>
		<link>http://www.droidnova.com/how-to-create-an-option-menu,427.html/comment-page-2#comment-2409</link>
		<dc:creator>Brandon</dc:creator>
		<pubDate>Tue, 27 Dec 2011 03:01:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.droidnova.com/?p=427#comment-2409</guid>
		<description>hey I have been try to combine this tutorial and the 2D Tutorial Series – Part IV to make app were you use the menu from this tutorial to change the image you draw on screen in the 2D tutorial. I have run into a error on the computer that I dont know why it happening because it all makes sense in my head. the error is 
12-26 21:16:51.671: E/AndroidRuntime(362): java.lang.NullPointerException
12-26 21:16:51.671: E/AndroidRuntime(362): 	at yantz.imageapp4.Element.
(Element.java:19)
12-26 21:16:51.671: E/AndroidRuntime(362): 	at yantz.imageapp4.Panel.onTouchEvent(Panel.java:56)


here the code for the Elements class

&lt;pre lang=&quot;java&quot; line=&quot;1&quot;&gt;public class Element extends main{
	private int eX;
	private int eY;

		int location=yantz.imageapp4.R.drawable.box ;
	private Bitmap newimage;
	
	public  Element (Resources res, int x, int y) {
		
		switch (item2.getItemId()) {
		
		case yantz.imageapp4.R.id.icon2:     newimage = BitmapFactory.decodeResource(res,yantz.imageapp4.R.drawable.box);
                            break;
        case yantz.imageapp4.R.id.startupicon:   newimage = BitmapFactory.decodeResource(res, yantz.imageapp4.R.drawable.ic_launcher );
                            break;
        case yantz.imageapp4.R.id.icon:   newimage = BitmapFactory.decodeResource(res, yantz.imageapp4.R.drawable.icon );
       
    }
	Log.v(&quot;test&quot;, &quot;item2 changed is: &quot;+item2.getItemId());
		
		}
	
	public void doDraw2(Canvas canvas) {
		canvas.drawBitmap(newimage,eX,eY,null);
	}
	}&lt;/pre&gt;

main
&lt;pre lang=&quot;java&quot; line=&quot;1&quot;&gt;
public class main extends Activity {
    /** Called when the activity is first created. */
	MenuItem item2;
	
	@Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
       FrameLayout sv = new FrameLayout(this);
        LinearLayout ll = new LinearLayout(this);
        Panel test = new Panel(this);
        //ImageButton button = new ImageButton(this);
        
        ll.setOrientation(LinearLayout.VERTICAL);
        sv.addView(test);
        //ll.addView(button);
        sv.addView(ll);
       
        setContentView(sv);
       
    }
	
	public boolean onCreateOptionsMenu(Menu menu) {
		// TODO Auto-generated method stub
		MenuInflater inflater = getMenuInflater();
		inflater.inflate(R.menu.menu, menu);
		return super.onCreateOptionsMenu(menu);
	}

	@Override
	public boolean onOptionsItemSelected(MenuItem item) {
		// TODO Auto-generated method stub
		
		item2=item;
		
		Log.v(&quot;test&quot;, &quot;item2 change to = &quot;+item2.getItemId());
		return super.onOptionsItemSelected(item);
		}

}&lt;/pre&gt;

if anyone has any suggestions onor thought on this would be appreciated</description>
		<content:encoded><![CDATA[<p>hey I have been try to combine this tutorial and the 2D Tutorial Series – Part IV to make app were you use the menu from this tutorial to change the image you draw on screen in the 2D tutorial. I have run into a error on the computer that I dont know why it happening because it all makes sense in my head. the error is<br />
12-26 21:16:51.671: E/AndroidRuntime(362): java.lang.NullPointerException<br />
12-26 21:16:51.671: E/AndroidRuntime(362): 	at yantz.imageapp4.Element.<br />
(Element.java:19)<br />
12-26 21:16:51.671: E/AndroidRuntime(362): 	at yantz.imageapp4.Panel.onTouchEvent(Panel.java:56)</p>
<p>here the code for the Elements class</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
</pre></td><td class="code"><pre class="java" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">class</span> <span style="color: #003399;">Element</span> <span style="color: #000000; font-weight: bold;">extends</span> main<span style="color: #009900;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">private</span> <span style="color: #000066; font-weight: bold;">int</span> eX<span style="color: #339933;">;</span>
	<span style="color: #000000; font-weight: bold;">private</span> <span style="color: #000066; font-weight: bold;">int</span> eY<span style="color: #339933;">;</span>
&nbsp;
		<span style="color: #000066; font-weight: bold;">int</span> location<span style="color: #339933;">=</span>yantz.<span style="color: #006633;">imageapp4</span>.<span style="color: #006633;">R</span>.<span style="color: #006633;">drawable</span>.<span style="color: #006633;">box</span> <span style="color: #339933;">;</span>
	<span style="color: #000000; font-weight: bold;">private</span> Bitmap newimage<span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #000000; font-weight: bold;">public</span>  <span style="color: #003399;">Element</span> <span style="color: #009900;">&#40;</span>Resources res, <span style="color: #000066; font-weight: bold;">int</span> x, <span style="color: #000066; font-weight: bold;">int</span> y<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
		<span style="color: #000000; font-weight: bold;">switch</span> <span style="color: #009900;">&#40;</span>item2.<span style="color: #006633;">getItemId</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
		<span style="color: #000000; font-weight: bold;">case</span> yantz.<span style="color: #006633;">imageapp4</span>.<span style="color: #006633;">R</span>.<span style="color: #006633;">id</span>.<span style="color: #006633;">icon2</span><span style="color: #339933;">:</span>     newimage <span style="color: #339933;">=</span> BitmapFactory.<span style="color: #006633;">decodeResource</span><span style="color: #009900;">&#40;</span>res,yantz.<span style="color: #006633;">imageapp4</span>.<span style="color: #006633;">R</span>.<span style="color: #006633;">drawable</span>.<span style="color: #006633;">box</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
                            <span style="color: #000000; font-weight: bold;">break</span><span style="color: #339933;">;</span>
        <span style="color: #000000; font-weight: bold;">case</span> yantz.<span style="color: #006633;">imageapp4</span>.<span style="color: #006633;">R</span>.<span style="color: #006633;">id</span>.<span style="color: #006633;">startupicon</span><span style="color: #339933;">:</span>   newimage <span style="color: #339933;">=</span> BitmapFactory.<span style="color: #006633;">decodeResource</span><span style="color: #009900;">&#40;</span>res, yantz.<span style="color: #006633;">imageapp4</span>.<span style="color: #006633;">R</span>.<span style="color: #006633;">drawable</span>.<span style="color: #006633;">ic_launcher</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
                            <span style="color: #000000; font-weight: bold;">break</span><span style="color: #339933;">;</span>
        <span style="color: #000000; font-weight: bold;">case</span> yantz.<span style="color: #006633;">imageapp4</span>.<span style="color: #006633;">R</span>.<span style="color: #006633;">id</span>.<span style="color: #006633;">icon</span><span style="color: #339933;">:</span>   newimage <span style="color: #339933;">=</span> BitmapFactory.<span style="color: #006633;">decodeResource</span><span style="color: #009900;">&#40;</span>res, yantz.<span style="color: #006633;">imageapp4</span>.<span style="color: #006633;">R</span>.<span style="color: #006633;">drawable</span>.<span style="color: #006633;">icon</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
    <span style="color: #009900;">&#125;</span>
	Log.<span style="color: #006633;">v</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;test&quot;</span>, <span style="color: #0000ff;">&quot;item2 changed is: &quot;</span><span style="color: #339933;">+</span>item2.<span style="color: #006633;">getItemId</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
		<span style="color: #009900;">&#125;</span>
&nbsp;
	<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000066; font-weight: bold;">void</span> doDraw2<span style="color: #009900;">&#40;</span><span style="color: #003399;">Canvas</span> canvas<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		canvas.<span style="color: #006633;">drawBitmap</span><span style="color: #009900;">&#40;</span>newimage,eX,eY,<span style="color: #000066; font-weight: bold;">null</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
	<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>main</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
</pre></td><td class="code"><pre class="java" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">class</span> main <span style="color: #000000; font-weight: bold;">extends</span> Activity <span style="color: #009900;">&#123;</span>
    <span style="color: #008000; font-style: italic; font-weight: bold;">/** Called when the activity is first created. */</span>
	<span style="color: #003399;">MenuItem</span> item2<span style="color: #339933;">;</span>
&nbsp;
	@Override
    <span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000066; font-weight: bold;">void</span> onCreate<span style="color: #009900;">&#40;</span>Bundle savedInstanceState<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #000000; font-weight: bold;">super</span>.<span style="color: #006633;">onCreate</span><span style="color: #009900;">&#40;</span>savedInstanceState<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
       FrameLayout sv <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> FrameLayout<span style="color: #009900;">&#40;</span><span style="color: #000000; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        LinearLayout ll <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> LinearLayout<span style="color: #009900;">&#40;</span><span style="color: #000000; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #003399;">Panel</span> test <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #003399;">Panel</span><span style="color: #009900;">&#40;</span><span style="color: #000000; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #666666; font-style: italic;">//ImageButton button = new ImageButton(this);</span>
&nbsp;
        ll.<span style="color: #006633;">setOrientation</span><span style="color: #009900;">&#40;</span>LinearLayout.<span style="color: #006633;">VERTICAL</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        sv.<span style="color: #006633;">addView</span><span style="color: #009900;">&#40;</span>test<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #666666; font-style: italic;">//ll.addView(button);</span>
        sv.<span style="color: #006633;">addView</span><span style="color: #009900;">&#40;</span>ll<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
        setContentView<span style="color: #009900;">&#40;</span>sv<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
    <span style="color: #009900;">&#125;</span>
&nbsp;
	<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000066; font-weight: bold;">boolean</span> onCreateOptionsMenu<span style="color: #009900;">&#40;</span><span style="color: #003399;">Menu</span> menu<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		<span style="color: #666666; font-style: italic;">// TODO Auto-generated method stub</span>
		MenuInflater inflater <span style="color: #339933;">=</span> getMenuInflater<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		inflater.<span style="color: #006633;">inflate</span><span style="color: #009900;">&#40;</span>R.<span style="color: #006633;">menu</span>.<span style="color: #006633;">menu</span>, menu<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #000000; font-weight: bold;">return</span> <span style="color: #000000; font-weight: bold;">super</span>.<span style="color: #006633;">onCreateOptionsMenu</span><span style="color: #009900;">&#40;</span>menu<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
&nbsp;
	@Override
	<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000066; font-weight: bold;">boolean</span> onOptionsItemSelected<span style="color: #009900;">&#40;</span><span style="color: #003399;">MenuItem</span> item<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		<span style="color: #666666; font-style: italic;">// TODO Auto-generated method stub</span>
&nbsp;
		item2<span style="color: #339933;">=</span>item<span style="color: #339933;">;</span>
&nbsp;
		Log.<span style="color: #006633;">v</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;test&quot;</span>, <span style="color: #0000ff;">&quot;item2 change to = &quot;</span><span style="color: #339933;">+</span>item2.<span style="color: #006633;">getItemId</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #000000; font-weight: bold;">return</span> <span style="color: #000000; font-weight: bold;">super</span>.<span style="color: #006633;">onOptionsItemSelected</span><span style="color: #009900;">&#40;</span>item<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>if anyone has any suggestions onor thought on this would be appreciated</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin</title>
		<link>http://www.droidnova.com/how-to-create-an-option-menu,427.html/comment-page-2#comment-2391</link>
		<dc:creator>Martin</dc:creator>
		<pubDate>Thu, 08 Dec 2011 08:33:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.droidnova.com/?p=427#comment-2391</guid>
		<description>You should go to stackoverflow and ask for help there. If you provide what you have so far and where you are stuck, they will help you.</description>
		<content:encoded><![CDATA[<p>You should go to stackoverflow and ask for help there. If you provide what you have so far and where you are stuck, they will help you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vasanth</title>
		<link>http://www.droidnova.com/how-to-create-an-option-menu,427.html/comment-page-2#comment-2390</link>
		<dc:creator>Vasanth</dc:creator>
		<pubDate>Thu, 08 Dec 2011 08:23:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.droidnova.com/?p=427#comment-2390</guid>
		<description>Will you plz help me... i am doing project with Bluetooth. i can done part of coding for Bluetooth enable and discoverable but i can&#039;t get any proper code for discovering devices and pairing with them. i search many site, they provide  some coding but it is not working. will you plz send me basic bluetooth coding......plz...</description>
		<content:encoded><![CDATA[<p>Will you plz help me&#8230; i am doing project with Bluetooth. i can done part of coding for Bluetooth enable and discoverable but i can&#8217;t get any proper code for discovering devices and pairing with them. i search many site, they provide  some coding but it is not working. will you plz send me basic bluetooth coding&#8230;&#8230;plz&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rajarajan</title>
		<link>http://www.droidnova.com/how-to-create-an-option-menu,427.html/comment-page-2#comment-2378</link>
		<dc:creator>Rajarajan</dc:creator>
		<pubDate>Tue, 29 Nov 2011 05:15:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.droidnova.com/?p=427#comment-2378</guid>
		<description>Hi Martin,
 Good Morning

Thanks for your Guidance. Here I realized my mistake when i saw your screen shot. Just I am changed my emulator skin option to [default (WXGA)]. Now project working fine.

Thanks a lot.
Bye..</description>
		<content:encoded><![CDATA[<p>Hi Martin,<br />
 Good Morning</p>
<p>Thanks for your Guidance. Here I realized my mistake when i saw your screen shot. Just I am changed my emulator skin option to [default (WXGA)]. Now project working fine.</p>
<p>Thanks a lot.<br />
Bye..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin</title>
		<link>http://www.droidnova.com/how-to-create-an-option-menu,427.html/comment-page-2#comment-2377</link>
		<dc:creator>Martin</dc:creator>
		<pubDate>Mon, 28 Nov 2011 11:49:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.droidnova.com/?p=427#comment-2377</guid>
		<description>In my case everything works like expected. I have tried it on the Android 3.2 emulator.

Check this picture:
&lt;a href=&quot;http://en.zimagez.com/zimage/menuonandroid32.php&quot; target=&quot;_blank&quot; title=&quot;Photo hosted by zimagez.com&quot; rel=&quot;nofollow&quot;&gt;&lt;img src=&quot;http://en.zimagez.com/miniature/menuonandroid32.png&quot; alt=&quot;Photo hosted by zimagez.com&quot; /&gt;&lt;/a&gt;
You see the red circle, the menu button there is visible...</description>
		<content:encoded><![CDATA[<p>In my case everything works like expected. I have tried it on the Android 3.2 emulator.</p>
<p>Check this picture:<br />
<a href="http://en.zimagez.com/zimage/menuonandroid32.php" target="_blank" title="Photo hosted by zimagez.com" rel="nofollow"><img src="http://en.zimagez.com/miniature/menuonandroid32.png" alt="Photo hosted by zimagez.com" /></a><br />
You see the red circle, the menu button there is visible&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rajarajan</title>
		<link>http://www.droidnova.com/how-to-create-an-option-menu,427.html/comment-page-2#comment-2376</link>
		<dc:creator>Rajarajan</dc:creator>
		<pubDate>Mon, 28 Nov 2011 10:17:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.droidnova.com/?p=427#comment-2376</guid>
		<description>I am also doing the same, but the same output i got it, only the message will display like (hello world, SimpleOptionmenu)!.

Note: i just download the zip project link (SimpleOptionMenu (full eclipse project)). Extract it, and import it my eclipse IDE, and conversion it into android3.2 version through Project&gt;&gt;Properties&gt;&gt;Android. After that I Run the Project.

So Please guide me, what is the reason? If there is any technical or logical mistakes is there. And there is any possible for any other mistakes.

Please know it me. 

Thanks u.</description>
		<content:encoded><![CDATA[<p>I am also doing the same, but the same output i got it, only the message will display like (hello world, SimpleOptionmenu)!.</p>
<p>Note: i just download the zip project link (SimpleOptionMenu (full eclipse project)). Extract it, and import it my eclipse IDE, and conversion it into android3.2 version through Project&gt;&gt;Properties&gt;&gt;Android. After that I Run the Project.</p>
<p>So Please guide me, what is the reason? If there is any technical or logical mistakes is there. And there is any possible for any other mistakes.</p>
<p>Please know it me. </p>
<p>Thanks u.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

