Tuesday, 19 November 2013

How to create application shortcuts in desktop (Ubuntu)

How to create application shortcuts in  desktop (Ubuntu)
-------------------------------------------------------
It is very simple ,using one command we can complete this task

gnome-desktop-item-edit --create-new ~/Desktop
 
If above command is not found first you need to install the 
 sudo apt-get install  gnome-panel 
 
Then It will shows the following GUI
 
enter image description here 

  • You can give the any name , command location and comment 
  • Click on the image if you want to change it
    
    

Monday, 18 November 2013

Seperate thread for UI updation in Android

Where to use:
 Already one thread is running in our application ,In the same thread You want to update UI thread ,following code will help You.

"Calling the child thread  if parent thread functionality  changing every time."



Sample code:
---------------------------

//Parent thread
@Override
                public void onMessage(final String message) {

//child thread
runOnUiThread(new Runnable() {
                        @Override
                        public void run() {
                    // UI Updations
                           
                            t.append("\n"+message);
                        }
                    });

}

Sunday, 10 November 2013

Class has two properties of the same name , At the time of Java Bean to xml conversion



Name Of the Error:

Class has two properties of the same name "fieldName"
this problem is related to the following location:

--------------


Solution:
------------------------------

@XmlRootElement(name="yourRootElementName") @XmlAccessorType(XmlAccessType.FIELD)


Hint:
At the time of binding java bean to xml ,jaxb impl always look the getters methods .so if you are
used the above annotation then binding will takes by fields(all fields)


The use of access type FIELD will cause JAXB implementations to create bindings for:
  1.  fields
  2.  annotated properties