<?xml version="1.0" encoding="UTF-8"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>Nokia Developer Community - Discussions - Mobile Java General</title>
		<link>http://www.developer.nokia.com/Community/Discussion/</link>
		<description />
		<language>en</language>
		<lastBuildDate>Wed, 22 May 2013 19:37:09 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.developer.nokia.com/Community/Discussion/images/misc/rss.png</url>
			<title>Nokia Developer Community - Discussions - Mobile Java General</title>
			<link>http://www.developer.nokia.com/Community/Discussion/</link>
		</image>
		<item>
			<title>I have installed Nokia IDE for Java ME  and created, tried some sample projects.</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240460-I-have-installed-Nokia-IDE-for-Java-ME-and-created-tried-some-sample-projects&amp;goto=newpost</link>
			<pubDate>Wed, 22 May 2013 13:17:59 GMT</pubDate>
			<description>I have installed Nokia IDE for Java ME  and created, tried some sample projects. But How to import already existing wroking J2ME Apps like YouTubeMIDlet    etc. 
 
 
I have downloaded the above project from      
 
...</description>
			<content:encoded><![CDATA[<div>I have installed Nokia IDE for Java ME  and created, tried some sample projects. But How to import already existing wroking J2ME Apps like YouTubeMIDlet    etc.<br />
<br />
<br />
I have downloaded the above project from     <br />
<br />
<br />
<a href="http://www.developer.nokia.com/Community/Wiki/How_to_create_a_YouTube_player_with_Java_ME" target="_blank">http://www.developer.nokia.com/Commu...r_with_Java_ME</a><br />
<br />
<br />
<br />
Thanks</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>GTO_India</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240460-I-have-installed-Nokia-IDE-for-Java-ME-and-created-tried-some-sample-projects</guid>
		</item>
		<item>
			<title>Show alert as dialog with icon from the theme file in lcdui?</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240459-Show-alert-as-dialog-with-icon-from-the-theme-file-in-lcdui&amp;goto=newpost</link>
			<pubDate>Wed, 22 May 2013 12:39:46 GMT</pubDate>
			<description><![CDATA[How can I show alert as a dialog and use icon from the theme resource? Maybe this should be separate question, but what I'd like is something like this 
Image: http://i40.tinypic.com/21e0poz.png  
This image is taken right from the documentation of Alert, but unfortunately the doc doesn't say how...]]></description>
			<content:encoded><![CDATA[<div>How can I show alert as a dialog and use icon from the theme resource? Maybe this should be separate question, but what I'd like is something like this<br />
<img src="http://i40.tinypic.com/21e0poz.png" border="0" alt="" /><br />
This image is taken right from the documentation of Alert, but unfortunately the doc doesn't say how to achieve this. I am quite unsatisfied with the doc though, too many things are left unsaid.</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>imgen</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240459-Show-alert-as-dialog-with-icon-from-the-theme-file-in-lcdui</guid>
		</item>
		<item>
			<title>How to check for null values in Xml parsing?</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240458-How-to-check-for-null-values-in-Xml-parsing&amp;goto=newpost</link>
			<pubDate>Wed, 22 May 2013 10:45:43 GMT</pubDate>
			<description>I am working for nokia s40 apps and the web service url link i m calling contain null attributes. 
How to include null values as my program is not running whenever it encounters null values in xml file while parsing 
like what changes i should do when fetching golden quote so that my program runs...</description>
			<content:encoded><![CDATA[<div>I am working for nokia s40 apps and the web service url link i m calling contain null attributes.<br />
How to include null values as my program is not running whenever it encounters null values in xml file while parsing<br />
like what changes i should do when fetching golden quote so that my program runs fine?<br />
<br />
<br />
<br />
<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code"> public Vector parsingdata()<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; HttpConnection hc = (HttpConnection)Connector.open(url);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; InputStream is = hc.openInputStream();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Reader reader = new InputStreamReader(is);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; XmlParser parser = new XmlParser(reader);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; boolean xmlParsingDone = false;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //boolean error = false;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; String title = &quot;&quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; String desc = &quot;&quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  //String errorstr = &quot;&quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; while (!xmlParsingDone)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ParseEvent event = parser.read();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ParseEvent pe;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; switch (event.getType())<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; case Xml.START_TAG:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // Pick up Title for display<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; String tagName = event.getName();&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (&quot;goldenQuote&quot;.equals(tagName))<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; pe = parser.read();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; golden_text = pe.getText();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; v1.addElement(golden_text);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //System.out.println(&quot;hiiiiiiiii:::::hello:&quot;+v1.size());<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (&quot;date&quot;.equals(tagName))<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; pe = parser.read();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; golden_date = pe.getText();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; v2.addElement(golden_date);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //&nbsp; System.out.println(&quot;hiiiiiiiii:::date:&quot;+v2.size());<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; case Xml.END_TAG:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; case Xml.END_DOCUMENT:&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; xmlParsingDone = true;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; case Xml.TEXT:&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; case Xml.WHITESPACE:&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; default:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //&nbsp; System.out.println(&quot;v111111111111111111111111111&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&quot;+v1.size()); <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; finalVector.addElement(v1);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; finalVector.addElement(v2);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //System.out.println(&quot;v111111111111111111111111111&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&quot;+v1.size());&nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //System.out.println(&quot;v111111111111111111111111111&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&quot;+v2.size()); <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  // System.out.println(&quot;v111111111111111111111111111&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&quot;+ finalVector.size()); <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  catch (IOException ioe){<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  System.out.println(&quot;XML Parsing Error: &quot; + ioe);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  ioe.printStackTrace();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  }finally<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  parser = null;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return finalVector; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</code><hr />
</div></div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>Manpreet_Singh</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240458-How-to-check-for-null-values-in-Xml-parsing</guid>
		</item>
		<item>
			<title>Uniqueness of midlet suite</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240447-Uniqueness-of-midlet-suite&amp;goto=newpost</link>
			<pubDate>Mon, 20 May 2013 15:46:32 GMT</pubDate>
			<description><![CDATA[Hi, 
 
I'm preparing to publish an application with two different versions (Normal and Lite). Basically the only difference between them is the name of the application and content of data files included in the package - the two versions can even use the exact same midlet class. 
 
I couldn't find...]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I'm preparing to publish an application with two different versions (Normal and Lite). Basically the only difference between them is the name of the application and content of data files included in the package - the two versions can even use the exact same midlet class.<br />
<br />
I couldn't find any info about how phones uniquely identify midlet suites, eg. check whether a JAD/JAR being installed to the device is a new midlet suite or update to an existing one, so I tried on two devices (unsigned apps, installed via Nokia Suite, same MIDlet-Vendor in all tests):<br />
<br />
Asha 310: <br />
Installing same midlet suite with different JAD/JAR filename creates a new application on the device, no matter what the MIDlet-Name is. Reinstalling with same filename updates/reinstalls the existing suite.<br />
<br />
Nokia 808 Pureview: <br />
Midlet suites seem to be identified by MIDlet-Name specified in Manifest. Filename of the installed JAD/JAR is not taken into account. <br />
<br />
Can this result be generalized to other Nokia devices too, meaning two JARs will be seen as different midlet suites on all devices if the MIDlet-Name AND JAD/JAR filenames are different (and same if both of those match)? Or can something else (midlet class name/package or signature?) affect the detection as well?<br />
<br />
Also, for Nokia Publish / Nokia Store on S40, does this mean that as a publisher, when uploading a new version of an existing app, I have to always upload JAR file with the same filename as the previous version, to avoid duplicates being created on S40 devices if user updates/redownloads? For Symbian apps, I've been including version number in SIS file names, just to make it easy to check that I actually uploaded the correct version.</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>TongMuan</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240447-Uniqueness-of-midlet-suite</guid>
		</item>
		<item>
			<title>How to create Multiple Buttons with Hyperlinks in a Single Page</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240446-How-to-create-Multiple-Buttons-with-Hyperlinks-in-a-Single-Page&amp;goto=newpost</link>
			<pubDate>Mon, 20 May 2013 13:12:39 GMT</pubDate>
			<description><![CDATA[I want to know the method which enables us to create multiple buttons each with a hyperlink option or if possible multiple StringItems with Hyperlinks. I am able to make a single StringItem but can't make more than one. Any snippet/tutorial would be helpful. Thank you.]]></description>
			<content:encoded><![CDATA[<div>I want to know the method which enables us to create multiple buttons each with a hyperlink option or if possible multiple StringItems with Hyperlinks. I am able to make a single StringItem but can't make more than one. Any snippet/tutorial would be helpful. Thank you.</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>abhishekpal</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240446-How-to-create-Multiple-Buttons-with-Hyperlinks-in-a-Single-Page</guid>
		</item>
		<item>
			<title>Do we need to call diffrent recordsore with diffrent objects?</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240437-Do-we-need-to-call-diffrent-recordsore-with-diffrent-objects&amp;goto=newpost</link>
			<pubDate>Mon, 20 May 2013 06:06:35 GMT</pubDate>
			<description>I am making nokia s40 app on sdk 2.0 java 
 
If we have two recordstore , we have to make two separate objects for that?  
When i call closerecordstore() then i want a particular recordstore to get close 
 
and if i am using large number of recordstore then i have to create that much number of...</description>
			<content:encoded><![CDATA[<div>I am making nokia s40 app on sdk 2.0 java<br />
<br />
If we have two recordstore , we have to make two separate objects for that? <br />
When i call closerecordstore() then i want a particular recordstore to get close<br />
<br />
and if i am using large number of recordstore then i have to create that much number of objects?<br />
<br />
plz advice</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>Manpreet_Singh</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240437-Do-we-need-to-call-diffrent-recordsore-with-diffrent-objects</guid>
		</item>
		<item>
			<title>UI freeze after calling platformRequest to open URL</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240429-UI-freeze-after-calling-platformRequest-to-open-URL&amp;goto=newpost</link>
			<pubDate>Sat, 18 May 2013 14:08:21 GMT</pubDate>
			<description><![CDATA[In my LWUIT app I am calling platformRequest to open a URL after user click a button, but the issue is that after opening URL and back to my app by pressing the back button in Asha 501 emulator, the UI of my app freezes. What's the matter?]]></description>
			<content:encoded><![CDATA[<div>In my LWUIT app I am calling platformRequest to open a URL after user click a button, but the issue is that after opening URL and back to my app by pressing the back button in Asha 501 emulator, the UI of my app freezes. What's the matter?</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>imgen</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240429-UI-freeze-after-calling-platformRequest-to-open-URL</guid>
		</item>
		<item>
			<title>LWUIT FT - Header Bar Color</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240428-LWUIT-FT-Header-Bar-Color&amp;goto=newpost</link>
			<pubDate>Sat, 18 May 2013 07:39:04 GMT</pubDate>
			<description>I want to change the Header Bar Colour .. 
I am using LWUIT and developing ASHA full touch app .. please can someone share the code that how can I change the colour of Header Bar.</description>
			<content:encoded><![CDATA[<div>I want to change the Header Bar Colour ..<br />
I am using LWUIT and developing ASHA full touch app .. please can someone share the code that how can I change the colour of Header Bar.</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>Shayan Rais</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240428-LWUIT-FT-Header-Bar-Color</guid>
		</item>
		<item>
			<title>Error while running rms program. Null pointer Exception. Plz help</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240427-Error-while-running-rms-program-Null-pointer-Exception-Plz-help&amp;goto=newpost</link>
			<pubDate>Sat, 18 May 2013 06:22:37 GMT</pubDate>
			<description>I am using SDK 2.0 Nokia java making app for s40 series. Working on rms at moment and following is my problem 
 
I am calling web service and my data is stored in vectors.  
My program structure is as follows: 
 
parsing from webservice(url link) 
writing them on rms 
reading them 
 
Every time i...</description>
			<content:encoded><![CDATA[<div>I am using SDK 2.0 Nokia java making app for s40 series. Working on rms at moment and following is my problem<br />
<br />
I am calling web service and my data is stored in vectors. <br />
My program structure is as follows:<br />
<br />
parsing from webservice(url link)<br />
writing them on rms<br />
reading them<br />
<br />
Every time i run my program data must be added to recordstore. It is running fine for 2-3 times then it is showing Null pointer exception. <br />
Also i need to put a check that as soon as my recordtore is about to get full , create a new recordstore and start writing in that.<br />
<br />
How to do so?</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>Manpreet_Singh</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240427-Error-while-running-rms-program-Null-pointer-Exception-Plz-help</guid>
		</item>
		<item>
			<title>How to open phonebook  s40</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240426-How-to-open-phonebook-s40&amp;goto=newpost</link>
			<pubDate>Sat, 18 May 2013 05:06:45 GMT</pubDate>
			<description>I want to open phonebook by code (not get contact by PIM API) in s40 devices. How can I do it? 
Thanks in advance</description>
			<content:encoded><![CDATA[<div>I want to open phonebook by code (not get contact by PIM API) in s40 devices. How can I do it?<br />
Thanks in advance</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>tieubinh</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240426-How-to-open-phonebook-s40</guid>
		</item>
		<item>
			<title>Designing for Asha/S40 Touch and Non-Touch</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240417-Designing-for-Asha-S40-Touch-and-Non-Touch&amp;goto=newpost</link>
			<pubDate>Fri, 17 May 2013 16:00:31 GMT</pubDate>
			<description><![CDATA[Dear Community, 
 
I am a graphic designer with intermediate development knowledge and I have a question about designing an application for Nokia Asha.  I'm trying to design an app that works on both touch only and no-touch devices without creating too much additional work for the developers. 
 
In...]]></description>
			<content:encoded><![CDATA[<div>Dear Community,<br />
<br />
I am a graphic designer with intermediate development knowledge and I have a question about designing an application for Nokia Asha.  I'm trying to design an app that works on both touch only and no-touch devices without creating too much additional work for the developers.<br />
<br />
In terms of UI navigation, is there a simple way to support both non-touch and touch enabled devices? For now I have two separate UIs (See PDF attachment). One making use of the hardware softkeys and one with the pull up menu as used by LWUIT for Asha. Does the Asha LWUIT layout/UI work on non-touch device, if so, how? I have never designed for Nokia S40/Asha before so any help is greatly appreciated.<br />
<br />
Kind Regards,<br />
Matteo Cuellar<br />
<br />
<a href="http://www.vegapohl.com/vega/asha_preview.pdf" target="_blank">Asha Design PDF</a></div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>matteovega</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240417-Designing-for-Asha-S40-Touch-and-Non-Touch</guid>
		</item>
		<item>
			<title>How to deal with object that is wider than screen?</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240411-How-to-deal-with-object-that-is-wider-than-screen&amp;goto=newpost</link>
			<pubDate>Fri, 17 May 2013 10:35:43 GMT</pubDate>
			<description>Say, I have a narrow bar object with width = 700 and height = 20. (Which is wider than the screen) 
 
I want to be able to horizontal drag this bar so it display the rest of it.  
I already register it to frameAnimator but when I call drag function. Its new X would be less than 0 which will cause...</description>
			<content:encoded><![CDATA[<div>Say, I have a narrow bar object with width = 700 and height = 20. (Which is wider than the screen)<br />
<br />
I want to be able to horizontal drag this bar so it display the rest of it. <br />
I already register it to frameAnimator but when I call drag function. Its new X would be less than 0 which will cause an exception. (Imagine when you drag a bar to the left, its X would be decreased)  <br />
<br />
Please guide me or you can point me to places where I can read more about this. <br />
<br />
I don't know if this is the right place to ask but I dont see a forum for gesture API. <br />
<br />
Thank you :)</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>pongsakorn</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240411-How-to-deal-with-object-that-is-wider-than-screen</guid>
		</item>
		<item>
			<title>Customize Dialog</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240410-Customize-Dialog&amp;goto=newpost</link>
			<pubDate>Fri, 17 May 2013 06:50:52 GMT</pubDate>
			<description><![CDATA[Hi All Developers, 
I have the problem in LWUIT.. 
Can you help me to remove title dialog , So I want show the dialog without title dialog :) 
 
You can see in the problem in this picture : 
Image: http://www.friend-ro.info/Temp/Pic.png  
 
I'm also get trouble in wrapping text.. Anyone have idea...]]></description>
			<content:encoded><![CDATA[<div>Hi All Developers,<br />
I have the problem in LWUIT..<br />
Can you help me to remove title dialog , So I want show the dialog without title dialog :)<br />
<br />
You can see in the problem in this picture :<br />
<img src="http://www.friend-ro.info/Temp/Pic.png" border="0" alt="" /><br />
<br />
I'm also get trouble in wrapping text.. Anyone have idea to wrap my text in the dialog ?<br />
<br />
Thanks for Helping<br />
<br />
<br />
Best Regards, Budi</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>renzatsu1</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240410-Customize-Dialog</guid>
		</item>
		<item>
			<title>Which LWUIT plugin for Asha SDK 1.0</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240406-Which-LWUIT-plugin-for-Asha-SDK-1-0&amp;goto=newpost</link>
			<pubDate>Thu, 16 May 2013 20:14:40 GMT</pubDate>
			<description>Hi, 
 
I wonder which jar I should use for Asha 1.0 (Nokia 501)? 
 
In folder Nokia\Devices\Nokia_Asha_SDK_1_0\plugins\lwuit\lib\asha1.0\ I have a few: 
- S40-asha2013.jar 
- S40-full-touch.jar 
- S40-touch-and-type.jar 
- S40-with-themes.jar</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I wonder which jar I should use for Asha 1.0 (Nokia 501)?<br />
<br />
In folder Nokia\Devices\Nokia_Asha_SDK_1_0\plugins\lwuit\lib\asha1.0\ I have a few:<br />
- S40-asha2013.jar<br />
- S40-full-touch.jar<br />
- S40-touch-and-type.jar<br />
- S40-with-themes.jar<br />
<br />
I use the first one and have NullPointerException trying to instance TextField.<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&nbsp; &nbsp; &nbsp; &nbsp; txtFrom = new TextField(5);<br />
&nbsp; &nbsp; &nbsp; &nbsp; txtFrom.setConstraint(TextField.DECIMAL);<br />
&nbsp; &nbsp; &nbsp; &nbsp; txtFrom.setText(&quot;1&quot;);<br />
...<br />
[DISPLAY] Warning: setPureTouch is disabled!<br />
no localization file: locale/locale.res. Load localization manually.<br />
java.lang.NullPointerException<br />
&nbsp; &nbsp; &nbsp; &nbsp; at com.nokia.mid.ui.TextEditorLFImpl.lSetParent(), bci=88<br />
&nbsp; &nbsp; &nbsp; &nbsp; at com.nokia.mid.ui.TextEditorImpl.setParent(), bci=32<br />
&nbsp;- com.nokia.lwuit.TextEditorProviderImpl.setParent(TextEditorProviderImpl.java:212)<br />
&nbsp;- com.sun.lwuit.impl.s40.S40Implementation.requestNewNativeTextEditor(S40Implementation.java:62)<br />
&nbsp;- com.sun.lwuit.TextArea.initTextEditor(TextArea.java:808)<br />
&nbsp;- com.sun.lwuit.TextArea.initComponentImpl(TextArea.java:799)<br />
&nbsp;- com.sun.lwuit.TextField.initComponentImpl(TextField.java:1465)<br />
&nbsp;- com.sun.lwuit.Container.initComponentImpl(Container.java:603)<br />
&nbsp;- com.sun.lwuit.Container.initComponentImpl(Container.java:603)<br />
&nbsp;- com.sun.lwuit.Container.initComponentImpl(Container.java:603)<br />
&nbsp;- com.sun.lwuit.Form.initComponentImpl(Form.java:1255)<br />
&nbsp;- com.sun.lwuit.Display.setCurrent(Display.java:1154)<br />
&nbsp;- com.sun.lwuit.Form.show(Form.java:1248)<br />
&nbsp;- com.sun.lwuit.Form.show(Form.java:1226)</code><hr />
</div>What is wrong with this TextField? <br />
<br />
Regards,<br />
Bogus</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>bogus40</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240406-Which-LWUIT-plugin-for-Asha-SDK-1-0</guid>
		</item>
		<item>
			<title>include strings onto the message editor</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240404-include-strings-onto-the-message-editor&amp;goto=newpost</link>
			<pubDate>Thu, 16 May 2013 17:16:39 GMT</pubDate>
			<description>I have a StringItem and I want to get its stringtext and include that stringtext onto the message editor in s40. How to do it?  
Thanks</description>
			<content:encoded><![CDATA[<div>I have a StringItem and I want to get its stringtext and include that stringtext onto the message editor in s40. How to do it? <br />
Thanks</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>tieubinh</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240404-include-strings-onto-the-message-editor</guid>
		</item>
		<item>
			<title>Fixed header while other parts scrolls</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240403-Fixed-header-while-other-parts-scrolls&amp;goto=newpost</link>
			<pubDate>Thu, 16 May 2013 15:40:44 GMT</pubDate>
			<description>How to make certain part of the form fixed while other parts scroll? To be specific, I have a search box and a list, I want the list to be scrollable while the search box remains visible. BTW, I am using LWUIT.</description>
			<content:encoded><![CDATA[<div>How to make certain part of the form fixed while other parts scroll? To be specific, I have a search box and a list, I want the list to be scrollable while the search box remains visible. BTW, I am using LWUIT.</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>imgen</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240403-Fixed-header-while-other-parts-scrolls</guid>
		</item>
		<item>
			<title>How to implement floggy database?</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240394-How-to-implement-floggy-database&amp;goto=newpost</link>
			<pubDate>Thu, 16 May 2013 08:53:48 GMT</pubDate>
			<description>I have tried floggy and getting following error: *Runtime java/lang/Runtime Exception on No PersistenceManager implementation was found. Please check the weaver execution.* 
 
My code is as follows:  
import javax.microedition.lcdui.Command; 
 
import javax.microedition.lcdui.CommandListener;...</description>
			<content:encoded><![CDATA[<div>I have tried floggy and getting following error: <b>Runtime java/lang/Runtime Exception on No PersistenceManager implementation was found. Please check the weaver execution.</b><br />
<br />
My code is as follows: <br />
import javax.microedition.lcdui.Command;<br />
<br />
import javax.microedition.lcdui.CommandListener;<br />
import javax.microedition.lcdui.Display;<br />
import javax.microedition.lcdui.Displayable;<br />
import javax.microedition.lcdui.Form;<br />
import javax.microedition.lcdui.TextField;<br />
import javax.microedition.midlet.MIDlet;<br />
import javax.microedition.midlet.MIDletStateChangeException;<br />
import net.sourceforge.floggy.persistence.*;<br />
<br />
public class ExampleFloggy extends MIDlet implements CommandListener {<br />
 <br />
    private TextField tfield;<br />
 <br />
    private Display display;<br />
    private Form form;<br />
    private TextField tfieldN;<br />
 <br />
    private Command savecmd;<br />
    private Command loadcmd;<br />
    private Command exitcmd;<br />
 <br />
 <br />
    public ExampleFloggy() {<br />
        tfield = new TextField(&quot;name:&quot;, &quot;&quot;, 15, TextField.ANY);<br />
        tfieldN = new TextField(&quot;age:&quot;, &quot;0&quot;, 15, TextField.NUMERIC);<br />
 <br />
        savecmd = new Command(&quot;save&quot;, &quot;save file&quot;, Command.SCREEN, 0);<br />
        loadcmd = new Command(&quot;load&quot;, &quot;load file&quot;, Command.ITEM, 0);<br />
        exitcmd = new Command(&quot;exit&quot;,&quot;exit&quot;,Command.EXIT,0);<br />
 <br />
        form = new Form(&quot;Floggy example.&quot;);<br />
        form.append(tfield);<br />
        form.append(tfieldN);<br />
        form.addCommand(savecmd);<br />
        form.addCommand(loadcmd);<br />
        form.addCommand(exitcmd);<br />
        form.setCommandListener(this);<br />
    }<br />
 <br />
    protected void destroyApp(boolean arg0) throws MIDletStateChangeException {<br />
        notifyDestroyed();<br />
    }<br />
 <br />
    protected void pauseApp() {<br />
    }<br />
 <br />
    protected void startApp() throws MIDletStateChangeException {<br />
        display = Display.getDisplay(this);<br />
        display.setCurrent(form);<br />
    }<br />
 <br />
    public void commandAction(Command cmd, Displayable arg1) {<br />
        if (cmd == savecmd) {<br />
            Myclass dateOut = new Myclass(tfield.getString(), Integer.parseInt(tfieldN.getString()));<br />
            int id;<br />
            try {<br />
                id = PersistableManager.getInstance().save(dateOut);<br />
                Myclass dateIn =  new Myclass();<br />
                PersistableManager.getInstance().load(dateIn, id);<br />
                form.append(dateIn.toString());<br />
            } catch (FloggyException e) {<br />
                e.printStackTrace();<br />
            }<br />
 <br />
        } else if (cmd==exitcmd){<br />
            try {<br />
                destroyApp(true);<br />
            } catch (MIDletStateChangeException e) {<br />
                e.printStackTrace();<br />
            }<br />
        } else if (cmd==loadcmd) {<br />
            try {<br />
                ObjectSet set = PersistableManager.getInstance().find(Myclass.class, null, null);<br />
                Myclass dateIn = new Myclass();<br />
                //set.get(0, dateIn);<br />
                tfield.setString(dateIn.getName());<br />
                tfieldN.setString(Integer.toString(dateIn.getAge()));<br />
            } catch (FloggyException e) {<br />
                e.printStackTrace();<br />
            }<br />
        }<br />
    }<br />
 <br />
}<br />
<br />
import net.sourceforge.floggy.persistence.Persistable;<br />
public class Myclass implements Persistable {<br />
 <br />
    private String name;<br />
    private int age;<br />
    private transient int num;<br />
 <br />
    public Myclass() {<br />
    }<br />
 <br />
    public Myclass(String name, int age) {<br />
        this.name = name;<br />
        this.age = age;<br />
    }<br />
 <br />
    public String toString() {<br />
        return &quot;&quot;;<br />
    }<br />
 <br />
    public String getName() {<br />
        return this.name;<br />
    }<br />
 <br />
    public int getAge() {<br />
        return this.age;<br />
    }<br />
 <br />
}<br />
<br />
I built jar file floggy-persistence-framwork.jar too . Both the classes are in default package<br />
I searched on this and get the following link <b> <a href="http://floggy.sourceforge.net/configuration/eclipse.html" target="_blank">http://floggy.sourceforge.net/config...n/eclipse.html</a></b> . Still problem is not solved<br />
<br />
what could be the reason plz help</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>Manpreet_Singh</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240394-How-to-implement-floggy-database</guid>
		</item>
		<item>
			<title>How do I make my textField search always show</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240392-How-do-I-make-my-textField-search-always-show&amp;goto=newpost</link>
			<pubDate>Thu, 16 May 2013 08:31:33 GMT</pubDate>
			<description>Hi everyone, 
 
I have a textField search and a list of ItemString append to a Form  (textField search on the top) 
When I type something to textField search, it will filter from the list and show the result for me in the same Form with the textField search 
I want to textField search always show...</description>
			<content:encoded><![CDATA[<div>Hi everyone,<br />
<br />
I have a textField search and a list of ItemString append to a Form  (textField search on the top)<br />
When I type something to textField search, it will filter from the list and show the result for me in the same Form with the textField search<br />
I want to textField search always show for user when user sliding down.<br />
I don't know how to do it?<br />
<br />
Thanks so much</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>tieubinh</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240392-How-do-I-make-my-textField-search-always-show</guid>
		</item>
		<item>
			<title>LWUIT TextField  issue (Asha FullTouch )</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240391-LWUIT-TextField-issue-(Asha-FullTouch-)&amp;goto=newpost</link>
			<pubDate>Thu, 16 May 2013 08:15:41 GMT</pubDate>
			<description><![CDATA[Hi, 
 
I use LWUIT plugin  from Nokia\Devices\Nokia_Asha_SDK_1_0\plugins\lwuit\lib\sdk2.0\S40-full-touch.jar in my project. 
All works OK despite touch on TextField. It doesn't open VirtualKeyboard after my touch. I have to tap TextField many times to open VK. 
It works very random. It should open...]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I use LWUIT plugin  from Nokia\Devices\Nokia_Asha_SDK_1_0\plugins\lwuit\lib\sdk2.0\S40-full-touch.jar in my project.<br />
All works OK despite touch on TextField. It doesn't open VirtualKeyboard after my touch. I have to tap TextField many times to open VK.<br />
It works very random. It should open VK after first tap on TextField.<br />
<br />
And one think more. After back from VK I see blinking cursor in my TextField.<br />
<br />
My code snippet:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&nbsp; &nbsp; &nbsp; &nbsp; txtFrom = new TextField(5);<br />
&nbsp; &nbsp; &nbsp; &nbsp; txtFrom.setConstraint(TextField.DECIMAL); // shows VB with numbers only<br />
&nbsp; &nbsp; &nbsp; &nbsp; txtFrom.setText(&quot;1&quot;); // initial value<br />
&nbsp; &nbsp; &nbsp; &nbsp; ctnWest.addComponent(txtFrom);<br />
&nbsp; &nbsp; &nbsp; &nbsp; txtFrom.addActionListener(new ActionListener() {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; public void actionPerformed(ActionEvent evt) {<br />
&nbsp; ...<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; evt.consume();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; });<br />
&nbsp; &nbsp; &nbsp; &nbsp; txtFrom.addDataChangeListener(new DataChangedListener() {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; public void dataChanged(int type, int index) {<br />
...<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; });</code><hr />
</div><br />
<br />
Have someone met some issue? I launch this app on Nokia Asha 311 and Nokia Asha 310.<br />
<br />
Thanks for help.<br />
<br />
Regards,<br />
Bogus</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>bogus40</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240391-LWUIT-TextField-issue-(Asha-FullTouch-)</guid>
		</item>
		<item>
			<title>Invalid Application alert issue with signed jar in Nokia 3110.</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240390-Invalid-Application-alert-issue-with-signed-jar-in-Nokia-3110&amp;goto=newpost</link>
			<pubDate>Thu, 16 May 2013 06:38:18 GMT</pubDate>
			<description><![CDATA[im developing an app for java mobiles. after signing the jar and jad im able to invoke the app in all nokia devices except nokia 3110. its showing "Invalid application" alert. im using compilance level 1.4. please give me a solution to overcome this and make the app to work in all devices.]]></description>
			<content:encoded><![CDATA[<div>im developing an app for java mobiles. after signing the jar and jad im able to invoke the app in all nokia devices except nokia 3110. its showing &quot;Invalid application&quot; alert. im using compilance level 1.4. please give me a solution to overcome this and make the app to work in all devices.</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>shabananb</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240390-Invalid-Application-alert-issue-with-signed-jar-in-Nokia-3110</guid>
		</item>
		<item>
			<title>App dictionary  and contact of asha s40 full touch</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240385-App-dictionary-and-contact-of-asha-s40-full-touch&amp;goto=newpost</link>
			<pubDate>Wed, 15 May 2013 18:31:56 GMT</pubDate>
			<description>I see in some asha s40 full touch devices have a dictionary app and contact app 
I want to develope the similar app 
Could you give me the source code of these app, I want to learn a lot in them. 
Thanks a lot</description>
			<content:encoded><![CDATA[<div>I see in some asha s40 full touch devices have a dictionary app and contact app<br />
I want to develope the similar app<br />
Could you give me the source code of these app, I want to learn a lot in them.<br />
Thanks a lot</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>tieubinh</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240385-App-dictionary-and-contact-of-asha-s40-full-touch</guid>
		</item>
		<item>
			<title>Database for asha s40 full touch</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240383-Database-for-asha-s40-full-touch&amp;goto=newpost</link>
			<pubDate>Wed, 15 May 2013 16:27:44 GMT</pubDate>
			<description><![CDATA[My app need to connect to database, but I don't know type of DB and how to use it (get data, insert, update, delete) 
Anybody help me? 
Thanks in advance!]]></description>
			<content:encoded><![CDATA[<div>My app need to connect to database, but I don't know type of DB and how to use it (get data, insert, update, delete)<br />
Anybody help me?<br />
Thanks in advance!</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>tieubinh</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240383-Database-for-asha-s40-full-touch</guid>
		</item>
		<item>
			<title>How to open VirtualKeyboard</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240381-How-to-open-VirtualKeyboard&amp;goto=newpost</link>
			<pubDate>Wed, 15 May 2013 14:53:07 GMT</pubDate>
			<description><![CDATA[Hi, 
 
I'm making a game on top of the canvas, and occasionally it would be nice to open the virtual keyboard (numeric mode), for user input. I don't have any editable fields, just the canvas. Is opening the virtual keyboard, and listening those events somehow possible on asha fulltouch?]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I'm making a game on top of the canvas, and occasionally it would be nice to open the virtual keyboard (numeric mode), for user input. I don't have any editable fields, just the canvas. Is opening the virtual keyboard, and listening those events somehow possible on asha fulltouch?</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>summeli</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240381-How-to-open-VirtualKeyboard</guid>
		</item>
		<item>
			<title>Focus to textField by code</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240380-Focus-to-textField-by-code&amp;goto=newpost</link>
			<pubDate>Wed, 15 May 2013 13:52:23 GMT</pubDate>
			<description>Hi anyone,  
How can I focus the pointer to textField in asha s40 by code??</description>
			<content:encoded><![CDATA[<div>Hi anyone, <br />
How can I focus the pointer to textField in asha s40 by code??</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>tieubinh</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240380-Focus-to-textField-by-code</guid>
		</item>
		<item>
			<title>Using graphic to drawString in more line</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240378-Using-graphic-to-drawString-in-more-line&amp;goto=newpost</link>
			<pubDate>Wed, 15 May 2013 13:24:15 GMT</pubDate>
			<description>Hi, I am developing my app 
I want to using graphic to draw a String auto down the line when end of screen or display in exactly line i need ( such text wrap on in list) 
I have a class such: 
class TouchItem extends CustomItem 
{ 
     .... 
     .... 
  
    public TouchItem( String label, int...</description>
			<content:encoded><![CDATA[<div>Hi, I am developing my app<br />
I want to using graphic to draw a String auto down the line when end of screen or display in exactly line i need ( such text wrap on in list)<br />
I have a class such:<br />
class TouchItem extends CustomItem<br />
{<br />
     ....<br />
     ....<br />
 <br />
    public TouchItem( String label, int itemsHeight, Main midlet) <br />
    {<br />
       ...<br />
...<br />
    }<br />
<br />
public void paint(Graphics g, int width, int height) {<br />
        <br />
        <br />
    	g.setColor(midlet.getForegroundColor());<br />
    	//g.drawRect(0, 0, width-2, height-2);<br />
    	g.drawString(label,(g.getFont().getSize()), <br />
                            (height - g.getFont().getHeight())/2, g.LEFT|g.TOP); //draw here <br />
        <br />
        <br />
    } <br />
who anybody help me?</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>tieubinh</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240378-Using-graphic-to-drawString-in-more-line</guid>
		</item>
		<item>
			<title>Reading XML file using LWUIT</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240367-Reading-XML-file-using-LWUIT&amp;goto=newpost</link>
			<pubDate>Wed, 15 May 2013 06:53:25 GMT</pubDate>
			<description>Hi, 
 
I want to read an XML file in one of the my LWUIT project. Can anyone share a simple working example of reading XML file using LWUIT?</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I want to read an XML file in one of the my LWUIT project. Can anyone share a simple working example of reading XML file using LWUIT?</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>girishpadia</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240367-Reading-XML-file-using-LWUIT</guid>
		</item>
		<item>
			<title>Can i use sqlite by calling servlet from midlet?</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240366-Can-i-use-sqlite-by-calling-servlet-from-midlet&amp;goto=newpost</link>
			<pubDate>Wed, 15 May 2013 05:20:07 GMT</pubDate>
			<description>I am using Nokia IDE 2.0 for java and i want to call servlet from midlet.  My IDE has no tools for making a servlet . Do i have to make servlet on a notepad, giving its directory structure , run it in apache tomcat and then giving the url link in midlet? 
or there is any other way? 
I am thinking...</description>
			<content:encoded><![CDATA[<div>I am using Nokia IDE 2.0 for java and i want to call servlet from midlet.  My IDE has no tools for making a servlet . Do i have to make servlet on a notepad, giving its directory structure , run it in apache tomcat and then giving the url link in midlet?<br />
or there is any other way?<br />
I am thinking to use sqlite in my servlet this way. Is that possible ?<br />
Plz help</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>Manpreet_Singh</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240366-Can-i-use-sqlite-by-calling-servlet-from-midlet</guid>
		</item>
		<item>
			<title>Push Registry Problem</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240357-Push-Registry-Problem&amp;goto=newpost</link>
			<pubDate>Tue, 14 May 2013 12:03:27 GMT</pubDate>
			<description><![CDATA[Hi, 
 
I want to call a Midlet from canvas of other midlet. How can I do that. 
 
Please help me by shearing a sample code. 
 
Thanks & Regards, 
Anirban]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I want to call a Midlet from canvas of other midlet. How can I do that.<br />
<br />
Please help me by shearing a sample code.<br />
<br />
Thanks &amp; Regards,<br />
Anirban</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>anirbanroy87</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240357-Push-Registry-Problem</guid>
		</item>
		<item>
			<title>Does nokia 6212 support llcp connection for NFC</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240351-Does-nokia-6212-support-llcp-connection-for-NFC&amp;goto=newpost</link>
			<pubDate>Tue, 14 May 2013 09:18:12 GMT</pubDate>
			<description>hi,  
   can anyone please tell me whether nokia 6212 supports LLCP connection.</description>
			<content:encoded><![CDATA[<div>hi, <br />
   can anyone please tell me whether nokia 6212 supports LLCP connection.</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>kmaring</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240351-Does-nokia-6212-support-llcp-connection-for-NFC</guid>
		</item>
		<item>
			<title>LWUIT list lazy loading.</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240349-LWUIT-list-lazy-loading&amp;goto=newpost</link>
			<pubDate>Tue, 14 May 2013 08:09:50 GMT</pubDate>
			<description>Hello Developers. 
 
I am developing j2me app in which am loading lwuit list with common default image. 
Once list is displayed with default image. i need to download the element specific image from the server. 
And as images get download one by one i need my list to be refresh with new image. 
 
i...</description>
			<content:encoded><![CDATA[<div>Hello Developers.<br />
<br />
I am developing j2me app in which am loading lwuit list with common default image.<br />
Once list is displayed with default image. i need to download the element specific image from the server.<br />
And as images get download one by one i need my list to be refresh with new image.<br />
<br />
i have tried following functions.<br />
<br />
1) List.setSelectedItem(obj)  // object having container with new image.<br />
2) GenericListCellRenderer.getListCellRendererComponent(list1, (Object)createTempContainert(), 0, true);<br />
<br />
Both of the above didn't worked.<br />
<br />
Can anyone knows how to update particular element from the list.<br />
<br />
All i need to replace the common image with the newly downloaded imaged from server.<br />
<br />
Please share your ideas with code snippet if possible.<br />
<br />
Thanks.<br />
Vishal</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>vishal.bharati</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240349-LWUIT-list-lazy-loading</guid>
		</item>
		<item>
			<title>How to get our border back in TextArea and TextField?</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240348-How-to-get-our-border-back-in-TextArea-and-TextField&amp;goto=newpost</link>
			<pubDate>Tue, 14 May 2013 07:45:44 GMT</pubDate>
			<description>It seems that in the new Asha Platform, the *TextArea *and *TextField* in LWUIT are all borderless and only have a line under it. Personally I think this is a brainless design, whoever come up with this design should be fired. The question is how to get the border back in the *TextField *and...</description>
			<content:encoded><![CDATA[<div>It seems that in the new Asha Platform, the <b>TextArea </b>and <b>TextField</b> in LWUIT are all borderless and only have a line under it. Personally I think this is a brainless design, whoever come up with this design should be fired. The question is how to get the border back in the <b>TextField </b>and <b>TextArea</b>?</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>imgen</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240348-How-to-get-our-border-back-in-TextArea-and-TextField</guid>
		</item>
		<item>
			<title>How do I write unicode text on textField</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240344-How-do-I-write-unicode-text-on-textField&amp;goto=newpost</link>
			<pubDate>Tue, 14 May 2013 04:58:23 GMT</pubDate>
			<description><![CDATA[Hi, I am a new developer 
When I develope my app I have a problem and I can't solve it. 
In the mainForm of my app, I have a textField (search) in order to search from a list. I want to search unicode text (Vietnamese, chinese, ect...) which write into the textField , but I can't write unicode text...]]></description>
			<content:encoded><![CDATA[<div>Hi, I am a new developer<br />
When I develope my app I have a problem and I can't solve it.<br />
In the mainForm of my app, I have a textField (search) in order to search from a list. I want to search unicode text (Vietnamese, chinese, ect...) which write into the textField , but I can't write unicode text into the textField<br />
Please help me and guide me how do I search in unicode text?<br />
Thanks in advance.</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>tieubinh</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240344-How-do-I-write-unicode-text-on-textField</guid>
		</item>
		<item>
			<title>How to remove this warning setPureTouch is disabled?</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240342-How-to-remove-this-warning-setPureTouch-is-disabled&amp;goto=newpost</link>
			<pubDate>Tue, 14 May 2013 01:34:56 GMT</pubDate>
			<description>Whenever I test my LWUIT app, I always get this warning 
setPureTouch is disabled 
 
How to fix this?</description>
			<content:encoded><![CDATA[<div>Whenever I test my LWUIT app, I always get this warning<br />
setPureTouch is disabled<br />
<br />
How to fix this?</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>imgen</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240342-How-to-remove-this-warning-setPureTouch-is-disabled</guid>
		</item>
		<item>
			<title>Nokia Asha Emulator Error</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240341-Nokia-Asha-Emulator-Error&amp;goto=newpost</link>
			<pubDate>Mon, 13 May 2013 20:07:24 GMT</pubDate>
			<description>When I run the new Nokia Asha Emulator, I get the following error. 
 
Java SE Development (JDK) version 7 update 21 or later detected. Install JDK 7 Update 17 or earlier. 
 
I have reverted back to version 7 update 11, but still get this error. Can anyone suggest a fix? Strange that the Nokia SDK...</description>
			<content:encoded><![CDATA[<div>When I run the new Nokia Asha Emulator, I get the following error.<br />
<br />
<i>Java SE Development (JDK) version 7 update 21 or later detected. Install JDK 7 Update 17 or earlier.</i><br />
<br />
I have reverted back to version 7 update 11, but still get this error. Can anyone suggest a fix? Strange that the Nokia SDK 2.0 emulator worked fine with the latest version of Java, but the newer Asha SDK doesn't work :confused:</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>grift</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240341-Nokia-Asha-Emulator-Error</guid>
		</item>
		<item>
			<title>Null Pointer getImplementation in Image class</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240337-Null-Pointer-getImplementation-in-Image-class&amp;goto=newpost</link>
			<pubDate>Mon, 13 May 2013 12:38:34 GMT</pubDate>
			<description><![CDATA[Hello guys, 
 
I download lwuit source code and i put it on my project. I trace the Display.getInstance().getImplementation() in Image class, with System.out.println("lwuit implementation: "+Display.getInstance().getImplementation()); in method Image createImage(String path) and Image...]]></description>
			<content:encoded><![CDATA[<div>Hello guys,<br />
<br />
I download lwuit source code and i put it on my project. I trace the Display.getInstance().getImplementation() in Image class, with System.out.println(&quot;lwuit implementation: &quot;+Display.getInstance().getImplementation()); in method Image createImage(String path) and Image createImage(byte[], int, int). All of that produce error: NullPointerException on getImplementation(). there is no setImplementation in LWUITImplementation class. I want to fixed this bug with make setImplementation in LWUITImplementation. But, where do i call the setImplementaion in Image class...?. Or any other idea to fixed the bug...?<br />
<br />
<br />
Best Regards,<br />
Iqbal</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>muhamad.iqbal</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240337-Null-Pointer-getImplementation-in-Image-class</guid>
		</item>
		<item>
			<title><![CDATA[The difference between "Connectivity" and "Network Access"]]></title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240335-The-difference-between-quot-Connectivity-quot-and-quot-Network-Access-quot&amp;goto=newpost</link>
			<pubDate>Mon, 13 May 2013 12:00:23 GMT</pubDate>
			<description><![CDATA[Hello everyone, 
 
I'm new to midlet programming, I was just looking at the API access rights on Series 40 6th FP1 phones here (http://www.developer.nokia.com/Community/Wiki/API_access_rights_on_phones,_Series_40_6th_FP1). 
 
According to the chart for these devices in the "Untrusted 3rd party...]]></description>
			<content:encoded><![CDATA[<div>Hello everyone,<br />
<br />
I'm new to midlet programming, I was just looking at the API access rights on Series 40 6th FP1 phones <a href="http://www.developer.nokia.com/Community/Wiki/API_access_rights_on_phones,_Series_40_6th_FP1" target="_blank">here</a>.<br />
<br />
According to the chart for these devices in the &quot;Untrusted 3rd party domain&quot; &quot;Connectivity&quot; can be set to &quot;Always Allowed&quot; but &quot;Network Access&quot; can not.<br />
<br />
My question is what is categorised as &quot;Connectivity&quot; and what as &quot;Network Access&quot;?<br />
<br />
Specifically I want to create a midlet that will connect to a web server and retrieve some JSON format data created from a PHP script, will I be able to set the permissions for doing that to &quot;Always Allowed&quot;?<br />
<br />
Also, will the permissions chart I've linked to be applicable to the Asha 501 too?<br />
<br />
Thanks.</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>Weave</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240335-The-difference-between-quot-Connectivity-quot-and-quot-Network-Access-quot</guid>
		</item>
		<item>
			<title>how to implement menu pop up on list item long press in J2ME?</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240330-how-to-implement-menu-pop-up-on-list-item-long-press-in-J2ME&amp;goto=newpost</link>
			<pubDate>Mon, 13 May 2013 07:11:45 GMT</pubDate>
			<description>down vote favorite 
	 
 
I am developing an J2ME application where i have a list. Now i want to display a pop up screen with three menus(delete, details and cancel) when i will make a long press or click on any of the list item / row. I have seen similar type of features in some nokia touch...</description>
			<content:encoded><![CDATA[<div>down vote favorite<br />
	<br />
<br />
I am developing an J2ME application where i have a list. Now i want to display a pop up screen with three menus(delete, details and cancel) when i will make a long press or click on any of the list item / row. I have seen similar type of features in some nokia touch phones(Check the whatsapp application).<br />
<br />
I have tried with below code:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code"> m_lAccountsList.setCommandListener(this);<br />
&nbsp; &nbsp; m_lAccountsList.setSelectCommand(selection);<br />
<br />
&nbsp;  public void commandAction(Command c, Displayable d) {<br />
&nbsp; &nbsp; if(c == selection)<br />
&nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; // I need to implement the pop up menu<br />
&nbsp; &nbsp; }</code><hr />
</div><br />
Is this pop menu is possible for j2me? .How i can implement this?</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>chandu_1233</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240330-how-to-implement-menu-pop-up-on-list-item-long-press-in-J2ME</guid>
		</item>
		<item>
			<title>How to test my midlet on S40 series device?</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240328-How-to-test-my-midlet-on-S40-series-device&amp;goto=newpost</link>
			<pubDate>Mon, 13 May 2013 04:46:57 GMT</pubDate>
			<description>I am new to Symbian Java. I made a midlet with few UI components added to it and i want to test the outcome of my midlet on real device.  
I have Nokia Asha 310 for testing that. Please describe steps how to do so. 
Thank You</description>
			<content:encoded><![CDATA[<div>I am new to Symbian Java. I made a midlet with few UI components added to it and i want to test the outcome of my midlet on real device. <br />
I have Nokia Asha 310 for testing that. Please describe steps how to do so.<br />
Thank You</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>Manpreet_Singh</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240328-How-to-test-my-midlet-on-S40-series-device</guid>
		</item>
		<item>
			<title>help please how can increse the size of rms database</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240332-help-please-how-can-increse-the-size-of-rms-database&amp;goto=newpost</link>
			<pubDate>Mon, 13 May 2013 04:35:19 GMT</pubDate>
			<description>I am making  app for Nokia S40 series and have a requirement of storing upto 8000 records . Which database i must prefer?  I tried rms database but my database gets corrupted on second run. I searched a lot about it and many developers say that rms is not a reliable database and also not suitable...</description>
			<content:encoded><![CDATA[<div>I am making  app for Nokia S40 series and have a requirement of storing upto 8000 records . Which database i must prefer?  I tried rms database but my database gets corrupted on second run. I searched a lot about it and many developers say that rms is not a reliable database and also not suitable for storing such a huge amount of records.<br />
<br />
I am new to Symbian java. Please advice.</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>Manpreet_Singh</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240332-help-please-how-can-increse-the-size-of-rms-database</guid>
		</item>
		<item>
			<title>How to do animations in LWUIT?</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240321-How-to-do-animations-in-LWUIT&amp;goto=newpost</link>
			<pubDate>Sun, 12 May 2013 11:13:38 GMT</pubDate>
			<description>I am trying to implement a pull refresh like feature for Asha 501, is it possible in LWUIT? If so, how?  
I also want to respond to other kind of gestures, such as swipe, etc.</description>
			<content:encoded><![CDATA[<div>I am trying to implement a pull refresh like feature for Asha 501, is it possible in LWUIT? If so, how? <br />
I also want to respond to other kind of gestures, such as swipe, etc.</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>imgen</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240321-How-to-do-animations-in-LWUIT</guid>
		</item>
		<item>
			<title>How to create a input box that is like a google search box?</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240316-How-to-create-a-input-box-that-is-like-a-google-search-box&amp;goto=newpost</link>
			<pubDate>Sat, 11 May 2013 14:53:09 GMT</pubDate>
			<description>I am surprised that I cannot find a control in LCDUI that can be like a search box with watermark text and border? Is it doable? If yes, how? No need to be detailed, just some direction.</description>
			<content:encoded><![CDATA[<div>I am surprised that I cannot find a control in LCDUI that can be like a search box with watermark text and border? Is it doable? If yes, how? No need to be detailed, just some direction.</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>imgen</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240316-How-to-create-a-input-box-that-is-like-a-google-search-box</guid>
		</item>
		<item>
			<title>how to access rms from another midlet class in j2me for nokia</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240314-how-to-access-rms-from-another-midlet-class-in-j2me-for-nokia&amp;goto=newpost</link>
			<pubDate>Sat, 11 May 2013 10:52:24 GMT</pubDate>
			<description>I am new in j2me and i am using rms database for S40 series.I want to access  recordstore from one to another midlet.so tell me how can i access it .please help ...</description>
			<content:encoded><![CDATA[<div>I am new in j2me and i am using rms database for S40 series.I want to access  recordstore from one to another midlet.so tell me how can i access it .please help ...</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>vikrantthegroove</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240314-how-to-access-rms-from-another-midlet-class-in-j2me-for-nokia</guid>
		</item>
		<item>
			<title>What should I choose when doing UI between LCDUI and LWUIT?</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240306-What-should-I-choose-when-doing-UI-between-LCDUI-and-LWUIT&amp;goto=newpost</link>
			<pubDate>Fri, 10 May 2013 23:39:54 GMT</pubDate>
			<description>It seems there is two piece of technology for building UI, LCDUI and LWUIT, which one should I choose? Or how do I choose base on a few criteria.</description>
			<content:encoded><![CDATA[<div>It seems there is two piece of technology for building UI, LCDUI and LWUIT, which one should I choose? Or how do I choose base on a few criteria.</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>imgen</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240306-What-should-I-choose-when-doing-UI-between-LCDUI-and-LWUIT</guid>
		</item>
		<item>
			<title>what is the solution for corrupt rms file detected</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240299-what-is-the-solution-for-corrupt-rms-file-detected&amp;goto=newpost</link>
			<pubDate>Fri, 10 May 2013 10:57:49 GMT</pubDate>
			<description><![CDATA[I am new to J2ME and i am working on Nokia S40 and using rms database. I have to store 8000 records in Recordstore rms database so i don't have any idea how much data it can store in memory.]]></description>
			<content:encoded><![CDATA[<div>I am new to J2ME and i am working on Nokia S40 and using rms database. I have to store 8000 records in Recordstore rms database so i don't have any idea how much data it can store in memory.</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>Manpreet_Singh</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240299-what-is-the-solution-for-corrupt-rms-file-detected</guid>
		</item>
		<item>
			<title>local sql database storage</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240294-local-sql-database-storage&amp;goto=newpost</link>
			<pubDate>Fri, 10 May 2013 09:15:05 GMT</pubDate>
			<description><![CDATA[Hi 
 
I am new to the Asha platform, and am excited by the new phones being release (501 etc). I am thinking of developing an app that will extensively use local custom data, which I'd like to query via an SQL or sql-like interface. 
 
I have built windows 8 apps that use SQLite, and I want to know...]]></description>
			<content:encoded><![CDATA[<div>Hi<br />
<br />
I am new to the Asha platform, and am excited by the new phones being release (501 etc). I am thinking of developing an app that will extensively use local custom data, which I'd like to query via an SQL or sql-like interface.<br />
<br />
I have built windows 8 apps that use SQLite, and I want to know what the Nokia-recommended approach is for storing complex relational data locally<br />
<br />
Thanks</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>deanchalk</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240294-local-sql-database-storage</guid>
		</item>
		<item>
			<title>Does the new Asha 501 support copy paste?</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240282-Does-the-new-Asha-501-support-copy-paste&amp;goto=newpost</link>
			<pubDate>Thu, 09 May 2013 17:25:10 GMT</pubDate>
			<description><![CDATA[My app desperately needs this capability (and push notifications which new asha does support), so I am really concerned whether copy&paste will be supported? If not now, is it in the works?]]></description>
			<content:encoded><![CDATA[<div>My app desperately needs this capability (and push notifications which new asha does support), so I am really concerned whether copy&amp;paste will be supported? If not now, is it in the works?</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>imgen</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240282-Does-the-new-Asha-501-support-copy-paste</guid>
		</item>
		<item>
			<title>Nokia Asha 501 - What It Means For Developers?</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240271-Nokia-Asha-501-What-It-Means-For-Developers&amp;goto=newpost</link>
			<pubDate>Thu, 09 May 2013 07:37:36 GMT</pubDate>
			<description>Hey Everyone, 
 
So Nokia just announced the Asha 501 with the redesigned Asha OS, i was wondering what is everyone take on the device, hardware, launch, price etc? 
 
My 2cents is that the device is beautiful and has a great price (even less than the 311 i think), i did thought with all the...</description>
			<content:encoded><![CDATA[<div>Hey Everyone,<br />
<br />
So Nokia just announced the Asha 501 with the redesigned Asha OS, i was wondering what is everyone take on the device, hardware, launch, price etc?<br />
<br />
My 2cents is that the device is beautiful and has a great price (even less than the 311 i think), i did thought with all the pre-leaks that it will have a higher screen res (HVGA?) or at least to maintain the current Asha FT screen res (240x400) for maximun compatability.</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>shai.i</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240271-Nokia-Asha-501-What-It-Means-For-Developers</guid>
		</item>
		<item>
			<title>scan for image files in the phone  and memory card directory</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240248-scan-for-image-files-in-the-phone-and-memory-card-directory&amp;goto=newpost</link>
			<pubDate>Wed, 08 May 2013 06:18:16 GMT</pubDate>
			<description>Hi, 
 
Can i scan whole phone and memory card directory for the image files available on the phone. 
 
thanks 
 
pranshu</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
Can i scan whole phone and memory card directory for the image files available on the phone.<br />
<br />
thanks<br />
<br />
pranshu</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>Star Mobileoid2</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240248-scan-for-image-files-in-the-phone-and-memory-card-directory</guid>
		</item>
		<item>
			<title>PIM API ContactList::removeContact not removing contacts?</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240231-PIM-API-ContactList-removeContact-not-removing-contacts&amp;goto=newpost</link>
			<pubDate>Mon, 06 May 2013 17:50:12 GMT</pubDate>
			<description><![CDATA[Hi experts, 
 
I am struggling to understand why ContactList::removeContact always throws an exception with a description:  "the item does not belong to the list" whenever I try to delete a contact that I have just created using Contact::createContact(..).  
 
I create my contacts using the...]]></description>
			<content:encoded><![CDATA[<div>Hi experts,<br />
<br />
I am struggling to understand why ContactList::removeContact always throws an exception with a description:  &quot;the item does not belong to the list&quot; whenever I try to delete a contact that I have just created using Contact::createContact(..). <br />
<br />
I create my contacts using the following snippet:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">PIM pim = PIM.getInstance();<br />
contacts = (ContactList) pim.openPIMList(PIM.CONTACT_LIST, PIM.READ_WRITE);&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
Contact contact;<br />
for (int x = 0; x &lt; CONTACT_COUNT; ++x) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; contact = contacts.createContact();<br />
&nbsp; &nbsp; &nbsp; &nbsp; if (contact != null) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; String[] name = new String[contacts.stringArraySize(Contact.NAME)];<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; name[Contact.NAME_GIVEN] =&nbsp; FIRST_NAME[random.nextInt(FIRST_NAME.length)];<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; name[Contact.NAME_FAMILY] =&nbsp; LAST_NAME[random.nextInt(LAST_NAME.length)];<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; contact.addStringArray(Contact.NAME, Contact.ATTR_NONE, name);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; contact.commit();<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
}<br />
contacts.close();</code><hr />
</div>and I delete all contacts using:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">....<br />
ContactList contacts = (ContactList) pim.openPIMList(PIM.CONTACT_LIST, PIM.READ_WRITE);<br />
PIMList list = pim.openPIMList(PIM.CONTACT_LIST, PIM.READ_WRITE);<br />
Contact contact;<br />
for (Enumeration e = list.items(); e.hasMoreElements();) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; contact = (Contact) e.nextElement();&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; contacts.removeContact(contact);<br />
}<br />
<br />
list.close();<br />
contacts.close();<br />
...</code><hr />
</div>However, if I delete a contact immediately after creating it:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">contact = contacts.createContact();<br />
if (contact != null) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; String[] name = new String[contacts.stringArraySize(Contact.NAME)];<br />
&nbsp; &nbsp; &nbsp; &nbsp; name[Contact.NAME_GIVEN] =&nbsp; FIRST_NAME[random.nextInt(FIRST_NAME.length)];<br />
&nbsp; &nbsp; &nbsp; &nbsp; name[Contact.NAME_FAMILY] =&nbsp; LAST_NAME[random.nextInt(LAST_NAME.length)];<br />
&nbsp; &nbsp; &nbsp; &nbsp; contact.addStringArray(Contact.NAME, Contact.ATTR_NONE, name);<br />
&nbsp; &nbsp; &nbsp; &nbsp; contact.commit();<br />
<b>&nbsp; &nbsp; &nbsp; &nbsp; <font color="#FF0000">contacts.removeContact(contact);</font><br />
</b>}</code><hr />
</div>Then it deletes the contact successfully. This gets me to think that you need to pass the exact instance of the contact object that you have created in order to actually delete it. Can anybody confirm that this is the case? If so, then is there any other way to delete a contact without actually using the exact Contact instance?<br />
<br />
Thank you in advance!</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>lordbritishix1982</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240231-PIM-API-ContactList-removeContact-not-removing-contacts</guid>
		</item>
		<item>
			<title>QOTW: launching the Nokia store client from a midlet</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240216-QOTW-launching-the-Nokia-store-client-from-a-midlet&amp;goto=newpost</link>
			<pubDate>Sun, 05 May 2013 16:50:46 GMT</pubDate>
			<description><![CDATA[So i'd like to contribute my nice question for you all (even though i know the answer i think its a nice question that will get you guys exploring & thinking & digging through the java library). 
 
Can you launch the Nokia store client from a midlet?  
The use case for such is to link back to your...]]></description>
			<content:encoded><![CDATA[<div>So i'd like to contribute my nice question for you all (even though i know the answer i think its a nice question that will get you guys exploring &amp; thinking &amp; digging through the java library).<br />
<br />
Can you launch the Nokia store client from a midlet? <br />
The use case for such is to link back to your publisher page and/or to help the user rate your app etc.<br />
a simple enough question you'd think but not a simple enough answer because the answer is not a determinant Yes or No.<br />
<br />
When you think about the answer think of the platform you working with (big difference between Series 40 and Symbian) and there are also other difference within the same platform.</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>shai.i</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240216-QOTW-launching-the-Nokia-store-client-from-a-midlet</guid>
		</item>
		<item>
			<title>(Moved) about control number of rings in atd command</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240221-(Moved)-about-control-number-of-rings-in-atd-command&amp;goto=newpost</link>
			<pubDate>Sun, 05 May 2013 16:39:43 GMT</pubDate>
			<description>hi all masters 
 
i need help 
i can use atd (number) ; to dial a phone number 
 
i want to send just 3 rings for example  
and hang up 
 
how can i do this in hyper terminal for example ?</description>
			<content:encoded><![CDATA[<div>hi all masters<br />
<br />
i need help<br />
i can use atd (number) ; to dial a phone number<br />
<br />
i want to send just 3 rings for example <br />
and hang up<br />
<br />
how can i do this in hyper terminal for example ?<br />
<br />
please help me</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>good man</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240221-(Moved)-about-control-number-of-rings-in-atd-command</guid>
		</item>
		<item>
			<title>UDP broadcast not working (Asha 310)</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240191-UDP-broadcast-not-working-(Asha-310)&amp;goto=newpost</link>
			<pubDate>Fri, 03 May 2013 06:25:04 GMT</pubDate>
			<description><![CDATA[Hello! 
 
  I'm trying to broadcast a UDP package (datagram) but can't get it to work on the device (Asha 310). Here is my code: 
 
 
Code: 
--------- 
  UDPDatagramConnection conn = (UDPDatagramConnection) Connector.open("datagram://"); 
  System.out.println("Local address " +...]]></description>
			<content:encoded><![CDATA[<div>Hello!<br />
<br />
  I'm trying to broadcast a UDP package (datagram) but can't get it to work on the device (Asha 310). Here is my code:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&nbsp; UDPDatagramConnection conn = (UDPDatagramConnection) Connector.open(&quot;datagram://&quot;);<br />
&nbsp; System.out.println(&quot;Local address &quot; + conn.getLocalAddress() + &quot;:&quot; + conn.getLocalPort());<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; Datagram dg = conn.newDatagram(pPacket.length);<br />
&nbsp; dg.setData(pPacket, 0, pPacket.length);<br />
&nbsp; dg.setAddress(&quot;datagram://192.168.0.255:1234&quot;);<br />
<br />
&nbsp; conn.send(dg);</code><hr />
</div>If I use concrete address (e.g. 192.168.0.2) the packet is send without problems. If I use 255.255.255.255, conn.send() finishes without exception but nothing gets send on the network (checked with Wireshark). If the address is using the correct format to broadcast just in this network segment as above (192.168.0.255), conn.send() throws &quot;Failed to send datagram&quot; exception.<br />
<br />
In the simulator 255.255.255.255 still does not work but 192.168.0.255 works just fine. However on the device nothing works (except sending to a concrete, non-broadcast address). Any clues? Is the UDP broadcast possible at all on Asha devices?<br />
 <br />
  Thanks in advance.</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>da32x</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240191-UDP-broadcast-not-working-(Asha-310)</guid>
		</item>
		<item>
			<title>Variable not changing</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240189-Variable-not-changing&amp;goto=newpost</link>
			<pubDate>Thu, 02 May 2013 21:45:26 GMT</pubDate>
			<description>I have some StringItems buttons(with actionCommand for items) which all switch to the one same form.And the switched form showed the string which item(button) I clicked.If I go back to the previous frame through another StringItem(button) and click any different button, the switched form showed the...</description>
			<content:encoded><![CDATA[<div>I have some StringItems buttons(with actionCommand for items) which all switch to the one same form.And the switched form showed the string which item(button) I clicked.If I go back to the previous frame through another StringItem(button) and click any different button, the switched form showed the old string I clicked.<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">else if (item == stringItem3) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (command == aCommand) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // write pre-action user code here<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; result=&quot;a&quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; switchDisplayable(null, getResultForm());<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // write post-action user code here<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; } else if (item == stringItem4) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (command == bCommand) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // write pre-action user code here<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; result=&quot;b&quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; switchDisplayable(null, getResultForm());<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // write post-action user code here<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; } else if (item == stringItem5) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (command == cCommand) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // write pre-action user code here<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  result=&quot;c&quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; switchDisplayable(null, getResultForm());<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // write post-action user code here<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; } else if (item == stringItem6) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (command == dCommand) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  result= &quot;d&quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // write pre-action user code here<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; switchDisplayable(null, getResultForm());<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // write post-action user code here<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; } else if (item == stringItem7) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (command == eCommand) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // write pre-action user code here<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  result=&quot;e&quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; switchDisplayable(null, getResultForm());<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // write post-action user code here<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</code><hr />
</div>so basically ,first time my result(global variable) changes,but after getting back to the previous form it won't take the value given here.<br />
I think I explained my problem clearly.Waiting for reply.</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>faysal515</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240189-Variable-not-changing</guid>
		</item>
		<item>
			<title>Getting back to the same form</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240176-Getting-back-to-the-same-form&amp;goto=newpost</link>
			<pubDate>Wed, 01 May 2013 05:31:46 GMT</pubDate>
			<description>I have a form with 4 StringItem.And 3 of them are attached with different StringItemCommand. I want to get back to the same form clicking one of the three StringItems(Button) making some modification in the 4th String Item(actually clicking on of those will change an int variable.) 
Getting stuck...</description>
			<content:encoded><![CDATA[<div>I have a form with 4 StringItem.And 3 of them are attached with different StringItemCommand. I want to get back to the same form clicking one of the three StringItems(Button) making some modification in the 4th String Item(actually clicking on of those will change an int variable.)<br />
Getting stuck with this.:(</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>faysal515</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240176-Getting-back-to-the-same-form</guid>
		</item>
		<item>
			<title>J2me Application to install works well. Turning off mobile no.</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240161-J2me-Application-to-install-works-well-Turning-off-mobile-no&amp;goto=newpost</link>
			<pubDate>Tue, 30 Apr 2013 07:25:07 GMT</pubDate>
			<description>Installed: implementation works well. 
At the close: the application works fine. 
Turning off the phone: Will not start the application. 
 
It never works. 
 
Phone: Nokia N81 and the application is installed on the external memory 
 
example with the same problem but no rms: 
import...</description>
			<content:encoded><![CDATA[<div>Installed: implementation works well.<br />
At the close: the application works fine.<br />
Turning off the phone: Will not start the application.<br />
<br />
It never works.<br />
<br />
Phone: Nokia N81 and the application is installed on the external memory<br />
<br />
example with the same problem but no rms:<br />
import javax.microedition.lcdui.*;<br />
import javax.microedition.midlet.MIDlet;<br />
<br />
public class PruebaMidlet extends MIDlet {<br />
<br />
private Display display;<br />
private Pantalla3 pantalla3;<br />
<br />
public void startApp() {<br />
display = Display.getDisplay(this);<br />
showPantalla3();<br />
}<br />
<br />
public void showPantalla3() {<br />
pantalla3 = new Pantalla3(this);<br />
display.setCurrent(pantalla3);<br />
}<br />
<br />
public void pauseApp() {<br />
}<br />
<br />
public void destroyApp(boolean unconditional) {<br />
}<br />
}<br />
import javax.microedition.lcdui.Command;<br />
import javax.microedition.lcdui.CommandListener;<br />
import javax.microedition.lcdui.Displayable;<br />
import javax.microedition.lcdui.Form;<br />
<br />
public class Pantalla3 extends Form implements CommandListener {<br />
<br />
public Pantalla3(PruebaMidlet prueba) {<br />
super(&quot;Prueba&quot;);<br />
}<br />
<br />
public void commandAction(Command c, Displayable d) {<br />
<br />
}<br />
}</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>andresmartin</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240161-J2me-Application-to-install-works-well-Turning-off-mobile-no</guid>
		</item>
		<item>
			<title>Menu Bar LWUIT</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240157-Menu-Bar-LWUIT&amp;goto=newpost</link>
			<pubDate>Tue, 30 Apr 2013 03:06:26 GMT</pubDate>
			<description>If I Use Full screen mode in Asha 311 , Can I use menu bar 
like this picture 
 
Image: http://www.friend-ro.info/Temp/pic.png  
 
How can I put menu bar in top left place in full sceen mode ? 
 
Thanks For Helping :)</description>
			<content:encoded><![CDATA[<div>If I Use Full screen mode in Asha 311 , Can I use menu bar<br />
like this picture<br />
<br />
<img src="http://www.friend-ro.info/Temp/pic.png" border="0" alt="" /><br />
<br />
How can I put menu bar in top left place in full sceen mode ?<br />
<br />
Thanks For Helping :)</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>Budiv1</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240157-Menu-Bar-LWUIT</guid>
		</item>
		<item>
			<title>DeviceControl Backlight</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240116-DeviceControl-Backlight&amp;goto=newpost</link>
			<pubDate>Thu, 25 Apr 2013 19:41:29 GMT</pubDate>
			<description>Hi, 
 
DeviceControl.setLights(0,100); works well, but how can you change the light back to the users default value (in the settings)? 
I could not find a method like DeviceControl.getLight() or something like that. 
 
Is there a good solution for the problem?</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
DeviceControl.setLights(0,100); works well, but how can you change the light back to the users default value (in the settings)?<br />
I could not find a method like DeviceControl.getLight() or something like that.<br />
<br />
Is there a good solution for the problem?</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>Matthias.Bay</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240116-DeviceControl-Backlight</guid>
		</item>
		<item>
			<title><![CDATA[How can i change the "Icon" image of action button1 for ASHA app]]></title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240108-How-can-i-change-the-quot-Icon-quot-image-of-action-button1-for-ASHA-app&amp;goto=newpost</link>
			<pubDate>Wed, 24 Apr 2013 11:15:03 GMT</pubDate>
			<description><![CDATA[Hi 
 
I am developing an application for "Full touch" ASHA devices.In that now for action button1 its showing a "Tick" mark as image. But i need to customize that image according to my needs in different screens. SO how can i change the image for action button 1.]]></description>
			<content:encoded><![CDATA[<div>Hi<br />
<br />
I am developing an application for &quot;Full touch&quot; ASHA devices.In that now for action button1 its showing a &quot;Tick&quot; mark as image. But i need to customize that image according to my needs in different screens. SO how can i change the image for action button 1.</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>ohiletechguy</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240108-How-can-i-change-the-quot-Icon-quot-image-of-action-button1-for-ASHA-app</guid>
		</item>
		<item>
			<title>Media-rich JAR too large?</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240107-Media-rich-JAR-too-large&amp;goto=newpost</link>
			<pubDate>Wed, 24 Apr 2013 09:08:10 GMT</pubDate>
			<description>I am currently developing a Java application that makes use of quite a lot of small graphics and sounds. Unfortunately, because of this, the size of my JAR exceeds the 2MB limit. I have already followed some of the steps to reduce the size of my images with this link...</description>
			<content:encoded><![CDATA[<div>I am currently developing a Java application that makes use of quite a lot of small graphics and sounds. Unfortunately, because of this, the size of my JAR exceeds the 2MB limit. I have already followed some of the steps to reduce the size of my images with <a href="http://www.developer.nokia.com/Community/Wiki/How_to_optimize_PNGs_to_reduce_JAR_size" target="_blank">this link</a>. I have also been using the obfuscator, which has helped too. The problem that I have is that the bulk of the JAR is being taken up by my sound files. The sound files themselves are already at the lowest possible settings I can have them at without compromising the quality and I've already tried experimenting between some of the different formats MP3 and WAV with little difference to the JAR size. <br />
<br />
Has anyone got any ideas on how to get around this issue?</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>grift</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240107-Media-rich-JAR-too-large</guid>
		</item>
		<item>
			<title>J2ME future??</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240105-J2ME-future&amp;goto=newpost</link>
			<pubDate>Wed, 24 Apr 2013 08:53:16 GMT</pubDate>
			<description>What do you think? How long will it take Android to catch up? 
http://www.dzone.com/links/r/is_j2me_dying.html</description>
			<content:encoded><![CDATA[<div>What do you think? How long will it take Android to catch up?<br />
<a href="http://www.dzone.com/links/r/is_j2me_dying.html" target="_blank">http://www.dzone.com/links/r/is_j2me_dying.html</a></div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>fishfishb</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240105-J2ME-future</guid>
		</item>
		<item>
			<title>Customize S40 Header Bar</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240102-Customize-S40-Header-Bar&amp;goto=newpost</link>
			<pubDate>Wed, 24 Apr 2013 07:22:46 GMT</pubDate>
			<description><![CDATA[I use Asha 311, How can I Customize  header bar background color and add component ? 
I've used getTitleComponent().getStyle().setBackGround and getTitleArea().addComponent.. But it works only in Nokia Asha 303 
But in Asha 311 the header background cannot change and add component . 
 
 
Have...]]></description>
			<content:encoded><![CDATA[<div>I use Asha 311, How can I Customize  header bar background color and add component ?<br />
I've used getTitleComponent().getStyle().setBackGround and getTitleArea().addComponent.. But it works only in Nokia Asha 303<br />
But in Asha 311 the header background cannot change and add component .<br />
<br />
<br />
Have anyone can resolve this problem..<br />
<br />
Thanks in Advance :)</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>Budiv1</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240102-Customize-S40-Header-Bar</guid>
		</item>
		<item>
			<title>Development environment clarification for S40 touch</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240087-Development-environment-clarification-for-S40-touch&amp;goto=newpost</link>
			<pubDate>Tue, 23 Apr 2013 11:08:52 GMT</pubDate>
			<description><![CDATA[Hi all, 
 
I've done a couple of apps with Qt C++ for S60 and earned for a new PC with them ( ;-) ) and I'd like to move to S40 due to larger pool of users. There's great support on the Nokia developer site but despite many (too many?) instructions I got lost how to put together a simple app that...]]></description>
			<content:encoded><![CDATA[<div>Hi all,<br />
<br />
I've done a couple of apps with Qt C++ for S60 and earned for a new PC with them ( ;-) ) and I'd like to move to S40 due to larger pool of users. There's great support on the Nokia developer site but despite many (too many?) instructions I got lost how to put together a simple app that would do a+b=c for the beginning.<br />
<br />
My question is: I use SDK 2.0 and my target phones are S40 touch. What is the structure of files (which files, projects, etc.) that must be put together to make an app? Where (which file) is the code that does the function (e.g. a+b) located? I realize I may sound stupid but I better ask one time than be a fool forever. I don't know Java but I guess I can learn step by step.<br />
<br />
Thanks. I am still one of those sticking with Nokia and avoid more fancy (expensive) devices and I'd like to stay here.<br />
<br />
Peter</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>strelamcqueen</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240087-Development-environment-clarification-for-S40-touch</guid>
		</item>
		<item>
			<title>Add list after showing form (hack for lwuit s40 list bug)</title>
			<link>http://www.developer.nokia.com/Community/Discussion/showthread.php?240084-Add-list-after-showing-form-(hack-for-lwuit-s40-list-bug)&amp;goto=newpost</link>
			<pubDate>Tue, 23 Apr 2013 07:21:38 GMT</pubDate>
			<description><![CDATA[Hi all, 
 
I'm using Tourist Attractions source code at link https://projects.developer.nokia.com/JMETouristAttractions 
Showing the main View(extend Form) AttractionView with function: 
 
Code: 
--------- 
public void show(Guide guide) { 
        this.guide = guide; 
       ...]]></description>
			<content:encoded><![CDATA[<div>Hi all,<br />
<br />
I'm using Tourist Attractions source code at link <a href="https://projects.developer.nokia.com/JMETouristAttractions" target="_blank">https://projects.developer.nokia.com...istAttractions</a><br />
Showing the main View(extend Form) AttractionView with function:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">public void show(Guide guide) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; this.guide = guide;<br />
&nbsp; &nbsp; &nbsp; &nbsp; attractionList.setGuide(guide);<br />
&nbsp; &nbsp; &nbsp; &nbsp; this.setTitle(guide.getCity());<br />
&nbsp; &nbsp; &nbsp; &nbsp; <font color="#FF0000">super.show();</font> //Form.show()<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; // Add list after showing form (hack for lwuit s40 list bug)<br />
&nbsp; &nbsp; &nbsp; &nbsp; if (!this.contains(attractionList)) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <font color="#FF0000">addComponent(attractionList);</font><br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; repaint();<br />
&nbsp; &nbsp; }</code><hr />
</div>Note that the form showed before attractionList(lwuit.List) was added.<br />
Above code work fine with nokia phone SDK but fail on other devices(not nokia phone, such as sun java wireless toolkit(WTK)).<br />
<br />
When using WTK, i add Thread.sleep(100000) before repaint();<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">public void show(Guide guide) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; this.guide = guide;<br />
&nbsp; &nbsp; &nbsp; &nbsp; attractionList.setGuide(guide);<br />
&nbsp; &nbsp; &nbsp; &nbsp; this.setTitle(guide.getCity());<br />
&nbsp; &nbsp; &nbsp; &nbsp; super.show(); //Form.show()<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; // Add list after showing form (hack for lwuit s40 list bug)<br />
&nbsp; &nbsp; &nbsp; &nbsp; if (!this.contains(attractionList)) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; addComponent(attractionList);<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; <font color="#FF0000">try {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Thread.sleep(100000);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; } catch (InterruptedException e) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // TODO Auto-generated catch block<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; e.printStackTrace();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</font><br />
&nbsp; &nbsp; &nbsp; &nbsp; repaint();<br />
&nbsp; &nbsp; }</code><hr />
</div>then it work fine in 100 seconds, i can increase this param but it is a bad ideal.<br />
<br />
So how can i fix it with WTK?<br />
<br />
Thanks &amp; Best Regards<br />
Phung</div>

]]></content:encoded>
			<category domain="http://www.developer.nokia.com/Community/Discussion/forumdisplay.php?16-Mobile-Java-General">Mobile Java General</category>
			<dc:creator>xuanphung001</dc:creator>
			<guid isPermaLink="true">http://www.developer.nokia.com/Community/Discussion/showthread.php?240084-Add-list-after-showing-form-(hack-for-lwuit-s40-list-bug)</guid>
		</item>
	</channel>
</rss>
