Monday, June 18, 2012

Send Data to Another Activity - Simple Android Login

5 comments
In this article you will learn how to send data from one Activity  to another Activity,I created two activity AndroidLoginActivity and LoginSuccess, in the LoinSuccess Activity will display logged user name.  Create Android project visit my previous  example  First Android Application in Eclipse Hello world Android Example, Un check the  Add OnClickListener to Button and Send Data to next Activity //...
Read more...

Friday, June 15, 2012

Create Dynamic JButton with Image and ActionListener - Java Swing

0 comments
In this tutorial you will learn how to create JButton dynamically with Image and the ActionListener . You will be able to change the button height , width horizontal gap and vertical gap in one place.I have create dummy database class which will return the Main menu items and the Sub menu items.You will see the Main menu item in your JFrame. If you select main Item (FOOD) from the button panel it will load Sub Items from the dummy database class...
Read more...

Friday, June 8, 2012

Install Android application on Android Device

1 comments
APK Creation in Eclipse and Install on Android Device In this tutorial you will be learn how to install developed Android application on your Android Device. You must know the correct Android Version of your device before you going to create APK file.Here I am going to install previous Android ListView example with Image and Text  application on android device. Device is Cisco Cius and the Android Version is 2.2.2  Check API Levels Open...
Read more...

Thursday, June 7, 2012

Synthetica Look And Feel Java Swing

19 comments
How to Apply Synthetica Look And Feel to JFrame in Netbeans Here I am going to explain how to apply Synthetica Look And Feel to a JFrame in Netbeans,in the previous tutorial I was explained how to apply Nimbus Look and Feel Java Swing to a JFrame.You will be able to apply SyntheticaSkyMetallicLookAndFeel SyntheticaBlueMoonLookAndFeel SyntheticaBlueIceLookAndFeel SyntheticaWhiteVisionLookAndFeel and SystemLookAndFeel...
Read more...

Tuesday, June 5, 2012

Nimbus Look and Feel Java Swing

4 comments
It is very easy to apply  Nimbus Look and Feel which was introduced in Java SE 6 update 10 release. Copy and past following code before creating the (GUI) Graphical User Interface Nimbus Look and Feel Before Applying the Nimbus Look and Feel try { UIManager.setLookAndFeel("com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel"); } catch (Exception ex) { // If the nibus...
Read more...