<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0">
    <channel>
        <title>Lowyat.NET: Latest topics by AzimLord</title>
        <description></description>
        <link>http://forum.lowyat.net/</link>
        <lastBuildDate>Mon, 06 Jul 2026 00:28:07 +0800</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>Wondermilk Cafe</title>
            <link>http://forum.lowyat.net/topic/3299727</link>
            <description>Hi&amp;#33; Have you guys been to wondermilk cafe?&lt;br /&gt;How&amp;#39;s the food?&lt;br /&gt;&lt;br /&gt;&lt;a href='http://www.ilovewondermilk.com' target='_blank'&gt;Wondermilk Cafe&lt;/a&gt;</description>
            <author>AzimLord</author>
            <category>Food &amp;amp; Flavours</category>
            <pubDate>Thu, 24 Jul 2014 12:03:39 +0800</pubDate>
        </item>
        <item>
            <title>Retrieve from ArrayList&amp;lt;HashMap&amp;lt;String, String&amp;gt;&amp;gt;</title>
            <link>http://forum.lowyat.net/topic/3298828</link>
            <description>Hi master of coder&amp;#33; &lt;br /&gt;&lt;br /&gt;all the data have been assign into &amp;quot;KEY_ID&amp;quot;, &amp;quot;KEY_NAME&amp;quot;, &amp;quot;KEY_COST&amp;quot;, and &amp;quot;KEY_DESC&amp;quot;&lt;br /&gt;how to i retrieve &lt;b&gt;only&lt;/b&gt; the &amp;quot;KEY_NAME&amp;quot; and put it here(the bold font):&lt;br /&gt;&lt;br /&gt;at the onTextChanged method&lt;br /&gt;&lt;!--QuoteBegin--&gt;&lt;div class='quotetop'&gt;QUOTE&lt;/div&gt;&lt;div class='quotemain'&gt;&lt;!--QuoteEBegin--&gt;AndroidXMLParsingActivity.this.&lt;b&gt;menuItems.get(0).get(&amp;quot;KEY_NAME&amp;quot;)&lt;/b&gt;.getFilter().filter(cs);&lt;!--QuoteEnd--&gt;&lt;/div&gt;&lt;!--QuoteEEnd--&gt;&lt;br /&gt;&lt;br /&gt;sorry for the noob question&lt;br /&gt;still new to eclipse&lt;br /&gt;thanks in advance  &lt;!--emo&amp;:respect:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/notworthy.gif' border='0' style='vertical-align:middle' alt='notworthy.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;!--SPOILER BEGIN--&gt;&lt;div class=&quot;spoilertop&quot; onClick=&quot;openClose('d325070ff205969403c977ea424d6eca')&quot; style=&quot;font-weight: bold&quot;&gt;&lt;u&gt;&amp;raquo; Click to show Spoiler - click again to hide... &amp;laquo;&lt;/u&gt;&lt;/div&gt;&lt;div class=&quot;spoilermain&quot; id=&quot;d325070ff205969403c977ea424d6eca&quot; style=&quot;display:none&quot;&gt;&lt;!--SPOILER END--&gt;&lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;&lt;br /&gt;.&lt;br /&gt;.&lt;br /&gt;.&lt;br /&gt;.&lt;br /&gt;public void onCreate&amp;#40;Bundle savedInstanceState&amp;#41; {&lt;br /&gt;  super.onCreate&amp;#40;savedInstanceState&amp;#41;;&lt;br /&gt;  setContentView&amp;#40;R.layout.main&amp;#41;;&lt;br /&gt;&lt;br /&gt;  ArrayList&amp;#60;HashMap&amp;#60;String, String&amp;#62;&amp;#62; menuItems = new ArrayList&amp;#60;HashMap&amp;#60;String, String&amp;#62;&amp;#62;&amp;#40;&amp;#41;;&lt;br /&gt;&lt;br /&gt;  XMLParser parser = new XMLParser&amp;#40;&amp;#41;;&lt;br /&gt;  String xml = parser.getXmlFromUrl&amp;#40;URL&amp;#41;; // getting XML&lt;br /&gt;  Document doc = parser.getDomElement&amp;#40;xml&amp;#41;; // getting DOM element&lt;br /&gt;&lt;br /&gt;  NodeList nl = doc.getElementsByTagName&amp;#40;KEY_ITEM&amp;#41;;&lt;br /&gt;  // looping through all item nodes &amp;#60;item&amp;#62;&lt;br /&gt;  for &amp;#40;int i = 0; i &amp;#60; nl.getLength&amp;#40;&amp;#41;; i++&amp;#41; {&lt;br /&gt;  	// creating new HashMap&lt;br /&gt;  	HashMap&amp;#60;String, String&amp;#62; map = new HashMap&amp;#60;String, String&amp;#62;&amp;#40;&amp;#41;;&lt;br /&gt;  	Element e = &amp;#40;Element&amp;#41; nl.item&amp;#40;i&amp;#41;;&lt;br /&gt;  	// adding each child node to HashMap key =&amp;#62; value&lt;br /&gt;  	map.put&amp;#40;KEY_ID, parser.getValue&amp;#40;e, KEY_ID&amp;#41;&amp;#41;;&lt;br /&gt;  	map.put&amp;#40;KEY_NAME, parser.getValue&amp;#40;e, KEY_NAME&amp;#41;&amp;#41;;&lt;br /&gt;  	map.put&amp;#40;KEY_COST, &amp;#34;Rs.&amp;#34; + parser.getValue&amp;#40;e, KEY_COST&amp;#41;&amp;#41;;&lt;br /&gt;  	map.put&amp;#40;KEY_DESC, parser.getValue&amp;#40;e, KEY_DESC&amp;#41;&amp;#41;;&lt;br /&gt;&lt;br /&gt;  	// adding HashList to ArrayList&lt;br /&gt;  	menuItems.add&amp;#40;map&amp;#41;;&lt;br /&gt;  }&lt;br /&gt;  &lt;br /&gt;  // Adding menuItems to ListView&lt;br /&gt;  ListAdapter adapter = new SimpleAdapter&amp;#40;this, menuItems,R.layout.list_item,new String&amp;#91;&amp;#93; { KEY_NAME, KEY_DESC, KEY_COST }, new int&amp;#91;&amp;#93; {R.id.name, R.id.desciption, R.id.cost }&amp;#41;;&lt;br /&gt;&lt;br /&gt;  setListAdapter&amp;#40;adapter&amp;#41;;&lt;br /&gt;&lt;br /&gt;  // selecting single ListView item&lt;br /&gt;  ListView lv = getListView&amp;#40;&amp;#41;;&lt;br /&gt;  &lt;br /&gt;  inputSearch = &amp;#40;EditText&amp;#41; findViewById&amp;#40;R.id.inputSearch&amp;#41;;&lt;br /&gt;  &lt;br /&gt;  inputSearch.addTextChangedListener&amp;#40;new TextWatcher&amp;#40;&amp;#41; {&lt;br /&gt;            &lt;br /&gt;            @Override&lt;br /&gt;            public void onTextChanged&amp;#40;CharSequence cs, int arg1, int arg2, int arg3&amp;#41; {&lt;br /&gt;            	&lt;br /&gt;              // When user changed the Text&lt;br /&gt;                    AndroidXMLParsingActivity.this.menuItems.get&amp;#40;0&amp;#41;.get&amp;#40;&amp;#34;KEY_NAME&amp;#34;&amp;#41;.getFilter&amp;#40;&amp;#41;.filter&amp;#40;cs&amp;#41;;&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;            @Override&lt;br /&gt;            public void beforeTextChanged&amp;#40;CharSequence arg0, int arg1, int arg2,&lt;br /&gt;                    int arg3&amp;#41; {&lt;br /&gt;                // TODO Auto-generated method stub&lt;br /&gt;                 &lt;br /&gt;            }&lt;br /&gt;             &lt;br /&gt;            @Override&lt;br /&gt;            public void afterTextChanged&amp;#40;Editable arg0&amp;#41; {&lt;br /&gt;                // TODO Auto-generated method stub                         &lt;br /&gt;            }&lt;br /&gt;        }&amp;#41;;&lt;br /&gt;.&lt;br /&gt;.&lt;br /&gt;.&lt;br /&gt;.&lt;br /&gt;.&lt;br /&gt;&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;!--SPOILER DIV--&gt;&lt;/div&gt;&lt;!--SPOILER DIV--&gt;</description>
            <author>AzimLord</author>
            <category>Codemasters</category>
            <pubDate>Wed, 23 Jul 2014 15:35:08 +0800</pubDate>
        </item>
        <item>
            <title>FATAL EXCEPTION : main</title>
            <link>http://forum.lowyat.net/topic/3297249</link>
            <description>Hi Masters&lt;br /&gt;i have accoutered a problem&lt;br /&gt;the app stopped after the splash screen&lt;br /&gt;sorry if this is a easy to solve problem&lt;br /&gt;i cant even find the problem and still new in app dev&lt;br /&gt;after this problem have been solve&lt;br /&gt;i want to ask a few question that i really dont understand about app dev&lt;br /&gt;thank you in advance, masters&amp;#33;  &lt;!--emo&amp;:respect:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/notworthy.gif' border='0' style='vertical-align:middle' alt='notworthy.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;&lt;br /&gt;Logcat trace:&lt;br /&gt;&lt;!--SPOILER BEGIN--&gt;&lt;div class=&quot;spoilertop&quot; onClick=&quot;openClose('d924b4470eb610c05dc4b9a15b19e3ce')&quot; style=&quot;font-weight: bold&quot;&gt;&lt;u&gt;&amp;raquo; Click to show Spoiler - click again to hide... &amp;laquo;&lt;/u&gt;&lt;/div&gt;&lt;div class=&quot;spoilermain&quot; id=&quot;d924b4470eb610c05dc4b9a15b19e3ce&quot; style=&quot;display:none&quot;&gt;&lt;!--SPOILER END--&gt;&lt;br /&gt;07-22 18:33:24.735: W/dalvikvm(964): threadid=1: thread exiting with uncaught exception (group=0x40a70930)&lt;br /&gt;07-22 18:33:24.833: E/AndroidRuntime(964): FATAL EXCEPTION: main&lt;br /&gt;07-22 18:33:24.833: E/AndroidRuntime(964): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.androidexample.splashscreen/com.androidexample.splashscreen.FirstScreen}: java.lang.NullPointerException&lt;br /&gt;07-22 18:33:24.833: E/AndroidRuntime(964): 	at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2180)&lt;br /&gt;07-22 18:33:24.833: E/AndroidRuntime(964): 	at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2230)&lt;br /&gt;07-22 18:33:24.833: E/AndroidRuntime(964): 	at android.app.ActivityThread.access&amp;#036;600(ActivityThread.java:141)&lt;br /&gt;07-22 18:33:24.833: E/AndroidRuntime(964): 	at android.app.ActivityThread&amp;#036;H.handleMessage(ActivityThread.java:1234)&lt;br /&gt;07-22 18:33:24.833: E/AndroidRuntime(964): 	at android.os.Handler.dispatchMessage(Handler.java:99)&lt;br /&gt;07-22 18:33:24.833: E/AndroidRuntime(964): 	at android.os.Looper.loop(Looper.java:137)&lt;br /&gt;07-22 18:33:24.833: E/AndroidRuntime(964): 	at android.app.ActivityThread.main(ActivityThread.java:5039)&lt;br /&gt;07-22 18:33:24.833: E/AndroidRuntime(964): 	at java.lang.reflect.Method.invokeNative(Native Method)&lt;br /&gt;07-22 18:33:24.833: E/AndroidRuntime(964): 	at java.lang.reflect.Method.invoke(Method.java:511)&lt;br /&gt;07-22 18:33:24.833: E/AndroidRuntime(964): 	at com.android.internal.os.ZygoteInit&amp;#036;MethodAndArgsCaller.run(ZygoteInit.java:793)&lt;br /&gt;07-22 18:33:24.833: E/AndroidRuntime(964): 	at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:560)&lt;br /&gt;07-22 18:33:24.833: E/AndroidRuntime(964): 	at dalvik.system.NativeStart.main(Native Method)&lt;br /&gt;07-22 18:33:24.833: E/AndroidRuntime(964): Caused by: java.lang.NullPointerException&lt;br /&gt;07-22 18:33:24.833: E/AndroidRuntime(964): 	at com.androidexample.splashscreen.FirstScreen.onCreate(FirstScreen.java:27)&lt;br /&gt;07-22 18:33:24.833: E/AndroidRuntime(964): 	at android.app.Activity.performCreate(Activity.java:5104)&lt;br /&gt;07-22 18:33:24.833: E/AndroidRuntime(964): 	at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1080)&lt;br /&gt;07-22 18:33:24.833: E/AndroidRuntime(964): 	at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2144)&lt;br /&gt;07-22 18:33:24.833: E/AndroidRuntime(964): 	... 11 more&lt;br /&gt;&lt;!--SPOILER DIV--&gt;&lt;/div&gt;&lt;!--SPOILER DIV--&gt;&lt;br /&gt;&lt;br /&gt;Splash screen:&lt;br /&gt;&lt;!--SPOILER BEGIN--&gt;&lt;div class=&quot;spoilertop&quot; onClick=&quot;openClose('9c052631dc6ac0484b13d7c56bc01470')&quot; style=&quot;font-weight: bold&quot;&gt;&lt;u&gt;&amp;raquo; Click to show Spoiler - click again to hide... &amp;laquo;&lt;/u&gt;&lt;/div&gt;&lt;div class=&quot;spoilermain&quot; id=&quot;9c052631dc6ac0484b13d7c56bc01470&quot; style=&quot;display:none&quot;&gt;&lt;!--SPOILER END--&gt;&lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;&lt;br /&gt;package com.androidexample.splashscreen;&lt;br /&gt;&lt;br /&gt;import android.os.Bundle;&lt;br /&gt;import android.view.Window;&lt;br /&gt;import android.view.WindowManager;&lt;br /&gt;import android.app.Activity;&lt;br /&gt;import android.content.Intent;&lt;br /&gt;&lt;br /&gt;public class MainSplashScreen extends Activity {&lt;br /&gt;&lt;br /&gt;	@Override&lt;br /&gt;	protected void onCreate&amp;#40;Bundle savedInstanceState&amp;#41; {&lt;br /&gt;  super.onCreate&amp;#40;savedInstanceState&amp;#41;;&lt;br /&gt;  requestWindowFeature&amp;#40;Window.FEATURE_NO_TITLE&amp;#41;;&lt;br /&gt;        getWindow&amp;#40;&amp;#41;.setFlags&amp;#40;WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN&amp;#41;;&lt;br /&gt;  setContentView&amp;#40;R.layout.main_splash_screen&amp;#41;;  	&lt;br /&gt;  Thread background = new Thread&amp;#40;&amp;#41; {&lt;br /&gt;  	public void run&amp;#40;&amp;#41; {&lt;br /&gt;    &lt;br /&gt;    try {&lt;br /&gt;    	// Thread will sleep for 5 seconds&lt;br /&gt;    	sleep&amp;#40;5*1000&amp;#41;;&lt;br /&gt;    	&lt;br /&gt;    	// After 5 seconds redirect to another intent&lt;br /&gt;        Intent i=new Intent&amp;#40;getBaseContext&amp;#40;&amp;#41;,FirstScreen.class&amp;#41;;&lt;br /&gt;    	startActivity&amp;#40;i&amp;#41;;&lt;br /&gt;    	&lt;br /&gt;    	//Remove activity&lt;br /&gt;    	finish&amp;#40;&amp;#41;;&lt;br /&gt;    	&lt;br /&gt;    } catch &amp;#40;Exception e&amp;#41; {&lt;br /&gt;    &lt;br /&gt;    }&lt;br /&gt;  	}&lt;br /&gt;  };&lt;br /&gt;  &lt;br /&gt;  // start thread&lt;br /&gt;  background.start&amp;#40;&amp;#41;;&lt;br /&gt;	}&lt;br /&gt;}&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;!--SPOILER DIV--&gt;&lt;/div&gt;&lt;!--SPOILER DIV--&gt;&lt;br /&gt;&lt;br /&gt;Main Screen&lt;br /&gt;&lt;!--SPOILER BEGIN--&gt;&lt;div class=&quot;spoilertop&quot; onClick=&quot;openClose('3a16bec3f9f45adc5a6d7ad45a0a4ec6')&quot; style=&quot;font-weight: bold&quot;&gt;&lt;u&gt;&amp;raquo; Click to show Spoiler - click again to hide... &amp;laquo;&lt;/u&gt;&lt;/div&gt;&lt;div class=&quot;spoilermain&quot; id=&quot;3a16bec3f9f45adc5a6d7ad45a0a4ec6&quot; style=&quot;display:none&quot;&gt;&lt;!--SPOILER END--&gt;&lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;&lt;br /&gt;package com.androidexample.splashscreen;&lt;br /&gt;&lt;br /&gt;import android.app.Activity;&lt;br /&gt;import android.database.Cursor;&lt;br /&gt;import android.database.sqlite.SQLiteDatabase;&lt;br /&gt;import android.os.Bundle;&lt;br /&gt;import android.view.View;&lt;br /&gt;import android.widget.EditText;&lt;br /&gt;import android.widget.ListAdapter;&lt;br /&gt;import android.widget.ListView;&lt;br /&gt;import android.widget.SimpleCursorAdapter;&lt;br /&gt;&lt;br /&gt;public class FirstScreen extends Activity {&lt;br /&gt;	&lt;br /&gt;	protected EditText searchText;&lt;br /&gt;    protected SQLiteDatabase db;&lt;br /&gt;    protected Cursor cursor;&lt;br /&gt;    protected ListAdapter adapter;&lt;br /&gt;    protected ListView employeeList;&lt;br /&gt;	&lt;br /&gt;	@Override&lt;br /&gt;	public void onCreate&amp;#40;Bundle savedInstanceState&amp;#41; {&lt;br /&gt;        super.onCreate&amp;#40;savedInstanceState&amp;#41;;&lt;br /&gt;        setContentView&amp;#40;R.layout.firstscreen&amp;#41;;&lt;br /&gt;        db = &amp;#40;new DatabaseHelper&amp;#40;this&amp;#41;&amp;#41;.getWritableDatabase&amp;#40;&amp;#41;;&lt;br /&gt;        searchText = &amp;#40;EditText&amp;#41; findViewById &amp;#40;R.id.searchText&amp;#41;;&lt;br /&gt;        employeeList.setAdapter&amp;#40;adapter&amp;#41;;&lt;br /&gt;	}&lt;br /&gt;	&lt;br /&gt;	@SuppressWarnings&amp;#40;&amp;#34;deprecation&amp;#34;&amp;#41;&lt;br /&gt;	public void search&amp;#40;View view&amp;#41; {&lt;br /&gt;        // &amp;#124;&amp;#124; is the concatenation operation in SQLite&lt;br /&gt;                cursor = db.rawQuery&amp;#40;&amp;#34;SELECT _id, firstName, lastName, title FROM employee WHERE firstName &amp;#124;&amp;#124; &amp;#39; &amp;#39; &amp;#124;&amp;#124; lastName LIKE ?&amp;#34;, new String&amp;#91;&amp;#93;{&amp;#34;%&amp;#34; + searchText.getText&amp;#40;&amp;#41;.toString&amp;#40;&amp;#41; + &amp;#34;%&amp;#34;}&amp;#41;;&lt;br /&gt;                adapter = new SimpleCursorAdapter&amp;#40;this, R.layout.employee_list_item, cursor, new String&amp;#91;&amp;#93; {&amp;#34;firstName&amp;#34;, &amp;#34;lastName&amp;#34;, &amp;#34;title&amp;#34;},new int&amp;#91;&amp;#93; {R.id.firstName, R.id.lastName, R.id.title}&amp;#41;;&lt;br /&gt;                employeeList.setAdapter&amp;#40;adapter&amp;#41;;&lt;br /&gt;    }&lt;br /&gt;}&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;!--SPOILER DIV--&gt;&lt;/div&gt;&lt;!--SPOILER DIV--&gt;&lt;br /&gt;&lt;br /&gt;Lastly, the manifest&lt;br /&gt;&lt;!--SPOILER BEGIN--&gt;&lt;div class=&quot;spoilertop&quot; onClick=&quot;openClose('4f5a0d0db6c451b6a3e78761b77fa89b')&quot; style=&quot;font-weight: bold&quot;&gt;&lt;u&gt;&amp;raquo; Click to show Spoiler - click again to hide... &amp;laquo;&lt;/u&gt;&lt;/div&gt;&lt;div class=&quot;spoilermain&quot; id=&quot;4f5a0d0db6c451b6a3e78761b77fa89b&quot; style=&quot;display:none&quot;&gt;&lt;!--SPOILER END--&gt;&lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;&lt;br /&gt;&amp;#60;?xml version=&amp;#34;1.0&amp;#34; encoding=&amp;#34;utf-8&amp;#34;?&amp;#62;&lt;br /&gt;&amp;#60;manifest xmlns&amp;#58;android=&amp;#34;http&amp;#58;//schemas.android.com/apk/res/android&amp;#34;&lt;br /&gt;    package=&amp;#34;com.androidexample.splashscreen&amp;#34;&lt;br /&gt;    android&amp;#58;versionCode=&amp;#34;1&amp;#34;&lt;br /&gt;    android&amp;#58;versionName=&amp;#34;1.0&amp;#34; &amp;#62;&lt;br /&gt;&lt;br /&gt;    &amp;#60;uses-sdk&lt;br /&gt;        android&amp;#58;minSdkVersion=&amp;#34;8&amp;#34;&lt;br /&gt;        android&amp;#58;targetSdkVersion=&amp;#34;17&amp;#34; /&amp;#62;&lt;br /&gt;&lt;br /&gt;    &amp;#60;application&lt;br /&gt;        android&amp;#58;allowBackup=&amp;#34;true&amp;#34;&lt;br /&gt;        android&amp;#58;icon=&amp;#34;@drawable/emal_new&amp;#34;&lt;br /&gt;        android&amp;#58;label=&amp;#34;@string/app_name&amp;#34;&lt;br /&gt;        android&amp;#58;theme=&amp;#34;@style/AppTheme&amp;#34; &amp;#62;&lt;br /&gt;        &amp;#60;activity&lt;br /&gt;            android&amp;#58;name=&amp;#34;com.androidexample.splashscreen.MainSplashScreen&amp;#34;&lt;br /&gt;            android&amp;#58;label=&amp;#34;@string/app_name&amp;#34; &amp;#62;&lt;br /&gt;            &amp;#60;intent-filter&amp;#62;&lt;br /&gt;                &amp;#60;action android&amp;#58;name=&amp;#34;android.intent.action.MAIN&amp;#34; /&amp;#62;&lt;br /&gt;&lt;br /&gt;                &amp;#60;category android&amp;#58;name=&amp;#34;android.intent.category.LAUNCHER&amp;#34; /&amp;#62;&lt;br /&gt;            &amp;#60;/intent-filter&amp;#62;&lt;br /&gt;        &amp;#60;/activity&amp;#62;&lt;br /&gt;        &amp;#60;activity android&amp;#58;name=&amp;#34;.FirstScreen&amp;#34; &amp;#62;&amp;#60;/activity&amp;#62;  &lt;br /&gt;        FirstScreen&lt;br /&gt;    &amp;#60;/application&amp;#62;&lt;br /&gt;&lt;br /&gt;&amp;#60;/manifest&amp;#62;&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;!--SPOILER DIV--&gt;&lt;/div&gt;&lt;!--SPOILER DIV--&gt;</description>
            <author>AzimLord</author>
            <category>Codemasters</category>
            <pubDate>Tue, 22 Jul 2014 11:54:05 +0800</pubDate>
        </item>
        <item>
            <title>Light bulb controlled by smartphone</title>
            <link>http://forum.lowyat.net/topic/3247604</link>
            <description>Light bulb control by a smartphone&lt;br /&gt;Where can i get it here in Malaysia&lt;br /&gt;&lt;br /&gt;Example:&lt;br /&gt;&lt;a href='http://lifx.co/' target='_blank'&gt;http://lifx.co/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Philips also got</description>
            <author>AzimLord</author>
            <category>Serious Kopitiam</category>
            <pubDate>Thu, 05 Jun 2014 00:13:47 +0800</pubDate>
        </item>
        <item>
            <title>[WTS] Line 6 UX1</title>
            <link>http://forum.lowyat.net/topic/3197166</link>
            <description>Item(s): &lt;a href='http://line6.com/podstudioux1/' target='_blank'&gt;Line 6 UX1&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Package includes: Cable&lt;br /&gt;&lt;br /&gt;Price: RM 300&lt;br /&gt;&lt;br /&gt;Warranty: Personal warranty 1 week&lt;br /&gt;&lt;br /&gt;Dealing method: COD&lt;br /&gt;&lt;br /&gt;Location: Cheras, Ampang, Puchong, USJ, Subang Jaya, Sunway&lt;br /&gt;&lt;br /&gt;Contact method/details: PM / 014 - 81three 883six&lt;br /&gt;&lt;br /&gt;---&lt;br /&gt;&lt;br /&gt;Item conditions: 7/10 Still good  &lt;!--emo&amp;:thumbs:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/thumbup.gif' border='0' style='vertical-align:middle' alt='thumbup.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;&lt;br /&gt;Picture: Attachments&lt;br /&gt;&lt;br /&gt;Reason for sale: &amp;#036;&amp;#036;&amp;#036;</description>
            <author>AzimLord</author>
            <category>Garage Sales Archive</category>
            <pubDate>Fri, 18 Apr 2014 03:44:26 +0800</pubDate>
        </item>
        <item>
            <title>Need help : Dual Monitor</title>
            <link>http://forum.lowyat.net/topic/3181449</link>
            <description>how do i make my monitors fit like this?&lt;br /&gt;any calculation? &lt;br /&gt;currently im using 24&amp;quot; dell monitor&lt;br /&gt;so i need to buy another monitor to look like this&lt;br /&gt;what size monitor i need to buy?&lt;br /&gt;&lt;br /&gt;&lt;img src='https://lh6.googleusercontent.com/-tjFkyvrnpko/UABHeulHMcI/AAAAAAAAO5Y/TWsuYELcsfI/w800-h800/2012-07-13%2B12.02.41.jpg' border='0' alt='user posted image' /&gt;</description>
            <author>AzimLord</author>
            <category>Hardware</category>
            <pubDate>Thu, 03 Apr 2014 13:34:22 +0800</pubDate>
        </item>
        <item>
            <title>Recording lesson</title>
            <link>http://forum.lowyat.net/topic/3080281</link>
            <description>Is there any recording lesson?  &lt;!--emo&amp;:hmm:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/hmm.gif' border='0' style='vertical-align:middle' alt='hmm.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>AzimLord</author>
            <category>Musicians</category>
            <pubDate>Fri, 27 Dec 2013 19:22:48 +0800</pubDate>
        </item>
        <item>
            <title>Good monitor + Bad room = Waste money</title>
            <link>http://forum.lowyat.net/topic/3025392</link>
            <description>Show me how you guys setup your home studio</description>
            <author>AzimLord</author>
            <category>Musicians</category>
            <pubDate>Sun, 10 Nov 2013 15:43:03 +0800</pubDate>
        </item>
        <item>
            <title>Tray Icon whem missing</title>
            <link>http://forum.lowyat.net/topic/3021435</link>
            <description>this is because software called Windows 7 Tray Icon Changer&lt;br /&gt;this software make everything gone&lt;br /&gt;i already fulfill all the error&lt;br /&gt;but still cannot do anything &lt;br /&gt;please help  &lt;!--emo&amp;:help:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/icon_question.gif' border='0' style='vertical-align:middle' alt='icon_question.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>AzimLord</author>
            <category>Technical Support</category>
            <pubDate>Thu, 07 Nov 2013 01:38:09 +0800</pubDate>
        </item>
        <item>
            <title>[WTS] PS 2</title>
            <link>http://forum.lowyat.net/topic/3015908</link>
            <description>&lt;b&gt;Item(s):&lt;/b&gt; PS 2 (Console)&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Package includes:&lt;/b&gt; cobsole itself, 2 controllers, RCA, power cable, 2 games (Fifa 2014 and Pes 2014), a guide and poliza de garantia(i think warranty card)&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Price:&lt;/b&gt; Sold to dawnfighter&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Dealing method:&lt;/b&gt; COD if possible Selangor and KL area &lt;br /&gt;&lt;br /&gt;&lt;b&gt;Location of seller:&lt;/b&gt; KL&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Contact method/details:&lt;/b&gt; 014 813 8836 (Whatsapp) or PM &lt;br /&gt;&lt;br /&gt;&lt;b&gt;Age of item:&lt;/b&gt; Brand new. Never been use&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Item(s) conditions:&lt;/b&gt; 100% brand new&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Reason for sale:&lt;/b&gt; Won this at school. No use leave it at home. Collecting dust only where people out there can enjoy and admire this PS2  &lt;!--emo&amp;:P--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/tongue.gif' border='0' style='vertical-align:middle' alt='tongue.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>AzimLord</author>
            <category>Garage Sales Archive</category>
            <pubDate>Sat, 02 Nov 2013 04:28:58 +0800</pubDate>
        </item>
        <item>
            <title>HTC One vs Samsung Galaxy S4</title>
            <link>http://forum.lowyat.net/topic/3015845</link>
            <description>or you can recommend other phone</description>
            <author>AzimLord</author>
            <category>Android</category>
            <pubDate>Sat, 02 Nov 2013 01:14:06 +0800</pubDate>
        </item>
        <item>
            <title>Rikimaru Bladebreaker Set</title>
            <link>http://forum.lowyat.net/topic/3012139</link>
            <description>Rikimaru Bladebraker Set&lt;br /&gt;&lt;br /&gt;2 keys and 5 random rare&lt;br /&gt;or&lt;br /&gt;offer me&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;no swap.&lt;br /&gt;i need keys to pay my friend back</description>
            <author>AzimLord</author>
            <category>DOTA 2</category>
            <pubDate>Wed, 30 Oct 2013 03:38:50 +0800</pubDate>
        </item>
        <item>
            <title>Where can i get this item?</title>
            <link>http://forum.lowyat.net/topic/3012021</link>
            <description>i want to upgrade my table by making another tingkat for my table&lt;br /&gt;so i need this item (the circle one) to add another tingkat of my table&lt;br /&gt;where can i get this item or anything similar to it?&lt;br /&gt;and i want to know that thing name&lt;br /&gt;&lt;br /&gt;or you can recommend me other option&lt;br /&gt;&lt;br /&gt;thank you very much for helping me  &lt;!--emo&amp;:)--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/smile.gif' border='0' style='vertical-align:middle' alt='smile.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>AzimLord</author>
            <category>Home Renovations and Interior Design</category>
            <pubDate>Wed, 30 Oct 2013 00:28:49 +0800</pubDate>
        </item>
        <item>
            <title>Brand new PS2?</title>
            <link>http://forum.lowyat.net/topic/3008127</link>
            <description>i want to know how much will brand new ps2 will worth&lt;br /&gt;and anyone want to buy thing?&lt;br /&gt;my mom win this at her teaching school  &lt;!--emo&amp;:hmm:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/hmm.gif' border='0' style='vertical-align:middle' alt='hmm.gif' /&gt;&lt;!--endemo--&gt;</description>
            <author>AzimLord</author>
            <category>Consoles Couch</category>
            <pubDate>Sat, 26 Oct 2013 18:45:22 +0800</pubDate>
        </item>
        <item>
            <title>what song is this?</title>
            <link>http://forum.lowyat.net/topic/2998337</link>
            <description>tell me. what song is this?&lt;br /&gt;&lt;br /&gt;&lt;a href='http://www.youtube.com/watch?v=g6NCGwOdHP8&amp;feature=share&amp;list=PL7EE69A535EA6948D' target='_blank'&gt;http://www.youtube.com/watch?v=g6NCGwOdHP8...EE69A535EA6948D&lt;/a&gt;</description>
            <author>AzimLord</author>
            <category>Musicians</category>
            <pubDate>Fri, 18 Oct 2013 00:00:07 +0800</pubDate>
        </item>
        <item>
            <title>Audio interface got noise sound on playback</title>
            <link>http://forum.lowyat.net/topic/2970244</link>
            <description>my friend got a problem with his AudioBox USB&lt;br /&gt;he bought and also borrow my interface usb cable if there any differences&lt;br /&gt;but still got that loud noisy sound while playback&lt;br /&gt;also replace the guitar cable got the same problem&lt;br /&gt;u guys know what problem is?&lt;br /&gt;&lt;br /&gt;&lt;img src='http://www.presonus.com/uploads/products/1473/mediabar/1/mediabar86.jpg' border='0' alt='user posted image' /&gt;</description>
            <author>AzimLord</author>
            <category>Musicians</category>
            <pubDate>Tue, 24 Sep 2013 02:29:50 +0800</pubDate>
        </item>
        <item>
            <title>Can this website be trusted?</title>
            <link>http://forum.lowyat.net/topic/2964297</link>
            <description>i wanna know this website can be trusted or not?   &lt;!--emo&amp;:hmm:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/hmm.gif' border='0' style='vertical-align:middle' alt='hmm.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;&lt;br /&gt;and anyone have experience using this website? &lt;br /&gt;&lt;br /&gt;&lt;a href='http://www.jobdirumah.com/' target='_blank'&gt;http://www.jobdirumah.com/&lt;/a&gt;</description>
            <author>AzimLord</author>
            <category>Jobs &amp;amp; Careers</category>
            <pubDate>Wed, 18 Sep 2013 21:25:03 +0800</pubDate>
        </item>
        <item>
            <title>Repeated array</title>
            <link>http://forum.lowyat.net/topic/2963158</link>
            <description>To all programmers out there. Help me please  &lt;!--emo&amp;:(--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/sad.gif' border='0' style='vertical-align:middle' alt='sad.gif' /&gt;&lt;!--endemo--&gt; &lt;br /&gt;&lt;br /&gt;My first problem is if i choose the first selection (iTeacherSelect == 1)&lt;br /&gt;It will show input box to input some information about teacher and store it in an arraylist(TeacherList())&lt;br /&gt;After finish enter all the information, i want it to enter teacherSub(...)&lt;br /&gt;But if i enter teacherSub(...)  the arraylist be created a new one call TeacherList()&lt;br /&gt;It&amp;#39;s like, it reset it self because of the coding told to do that.&lt;br /&gt;What I need to do to not reset the arraylist after i call teacherSub(...)?&lt;br /&gt;&lt;br /&gt;and the second one is, i want to call mainManu(...) at the selection (iTeacherSelect == 5)&lt;br /&gt;but i wont display the mainMenu(...) method. It display teacherSub(...) method.&lt;br /&gt;&lt;br /&gt;public static void mainMenu(...)&lt;br /&gt;{&lt;br /&gt;    ....&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;public static void teacherSub(int iTeacherSelect)&lt;br /&gt;    {&lt;br /&gt;        String temp;&lt;br /&gt;        String sIdNum, sName, sBirthDate, sBirthPlace, sRank;&lt;br /&gt;        int iSelectTeacher = 0;&lt;br /&gt;        double dSalary;&lt;br /&gt;        &lt;br /&gt;        ArrayList TeacherList = new ArrayList();&lt;br /&gt;        &lt;br /&gt;        Teacher teach;&lt;br /&gt;       &lt;br /&gt;        temp = JOptionPane.showInputDialog(&amp;quot;Select one of the following menus: &amp;#092;n&amp;#092;n1: Add&amp;#092;n2: Remove&amp;#092;n3: Update&amp;#092;n4: Print&amp;#092;n5: Back&amp;quot;);&lt;br /&gt;        iTeacherSelect = Integer.parseInt(temp);&lt;br /&gt;        &lt;br /&gt;        while(iTeacherSelect &amp;lt; 5)&lt;br /&gt;        {&lt;br /&gt;            if(iTeacherSelect == 0)&lt;br /&gt;            {&lt;br /&gt;                JOptionPane.showMessageDialog(null, &amp;quot;Error&amp;#33; No input&amp;#33;&amp;quot;);&lt;br /&gt;                teacherSub(0);&lt;br /&gt;            }&lt;br /&gt;            else if(iTeacherSelect == 1)&lt;br /&gt;            {&lt;br /&gt;                sIdNum = JOptionPane.showInputDialog(&amp;quot;Teachers ID: &amp;quot;);&lt;br /&gt;                sName = JOptionPane.showInputDialog(&amp;quot;Teacher name: &amp;quot;);&lt;br /&gt;                sBirthDate = JOptionPane.showInputDialog(&amp;quot;Teacher birth date: &amp;quot;);&lt;br /&gt;                sBirthPlace = JOptionPane.showInputDialog(&amp;quot;Teacher birth place: &amp;quot;);&lt;br /&gt;                temp = JOptionPane.showInputDialog(&amp;quot;Teacher salary: &amp;quot;);&lt;br /&gt;                dSalary = Double.parseDouble(temp);&lt;br /&gt;                sRank = JOptionPane.showInputDialog(&amp;quot;Teacher rank: &amp;quot;);&lt;br /&gt;                &lt;br /&gt;                teach = new Teacher(sIdNum, sName, sBirthDate, sBirthPlace, dSalary, sRank);&lt;br /&gt;                TeacherList.add(teach);&lt;br /&gt;                &lt;br /&gt;                System.out.println(&amp;quot;Teacher name &amp;quot; +teach.getName()+ &amp;quot; has been added&amp;quot;);&lt;br /&gt;                &lt;br /&gt;                teacherSub(0);&lt;br /&gt;            }&lt;br /&gt;            else if(iTeacherSelect == 2)&lt;br /&gt;            {&lt;br /&gt;                for(int iIndex = 0; iIndex &amp;lt; TeacherList.size(); iIndex++)&lt;br /&gt;                {&lt;br /&gt;                    //display all data in TeacherList and remove selected&lt;br /&gt;                }&lt;br /&gt;                &lt;br /&gt;            }&lt;br /&gt;            else if(iTeacherSelect == 3)&lt;br /&gt;            {&lt;br /&gt;                //update&lt;br /&gt;            }&lt;br /&gt;            else if(iTeacherSelect == 4)&lt;br /&gt;            {&lt;br /&gt;                //print &lt;br /&gt;             }&lt;br /&gt;            else if(iTeacherSelect == 5)&lt;br /&gt;            {&lt;br /&gt;                mainMenu(0);&lt;br /&gt;            }&lt;br /&gt;        }//end of while&lt;br /&gt;    }//end of teacherSub</description>
            <author>AzimLord</author>
            <category>Codemasters</category>
            <pubDate>Tue, 17 Sep 2013 22:32:12 +0800</pubDate>
        </item>
        <item>
            <title>[SOLD] Akai MPK Mini</title>
            <link>http://forum.lowyat.net/topic/2945797</link>
            <description>Item : Akai MPK Mini&lt;br /&gt;&lt;br /&gt;Condition : 9/10&lt;br /&gt;&lt;br /&gt;Price : SOLD&lt;br /&gt;&lt;br /&gt;Location of seller : Kuala Lumpur&lt;br /&gt;&lt;br /&gt;I only COD at KL&lt;br /&gt;&lt;br /&gt;Contact method/details : 0148138836 (Whatsapp)&lt;br /&gt;&lt;br /&gt;Reason for sale : Upgrade&lt;br /&gt;&lt;br /&gt;Here the review of Akai MPK Mini&lt;br /&gt;&lt;a href='http://www.youtube.com/watch?v=GYUfjQRljgs' target='_blank'&gt;http://www.youtube.com/watch?v=GYUfjQRljgs&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;[attachmentid=3632779][attachmentid=3632780]</description>
            <author>AzimLord</author>
            <category>Garage Sales Archive</category>
            <pubDate>Tue, 03 Sep 2013 09:50:49 +0800</pubDate>
        </item>
        <item>
            <title>[WTB] Coiled Guitar Cables</title>
            <link>http://forum.lowyat.net/topic/2945649</link>
            <description>I have been looking for coiled guitar cables since my last cable are not working. can anyone suggest where to buy coiled guitar cables? and it is good or not? Thank you  &lt;!--emo&amp;:clap:--&gt;&lt;img src='http://static.lowyat.net/style_emoticons/default/rclxms.gif' border='0' style='vertical-align:middle' alt='rclxms.gif' /&gt;&lt;!--endemo--&gt;&lt;br /&gt;</description>
            <author>AzimLord</author>
            <category>Garage Sales Archive</category>
            <pubDate>Tue, 03 Sep 2013 02:35:19 +0800</pubDate>
        </item>
    </channel>
</rss>
