Inspiring Quotes

Beautiful messages collected

Posted on

 ****9 BEAUTIFUL MESSAGES!!**** Stay away from anger, it hurts only you. If you are right then there is no need to get angry, and if you are wrong then you don’t have any right to get angry. Patience with family is love, Patience with others is respect. Patience with self is confidence and Patience with GOD […]

Android

Unable to resolve superclass of Activity

Posted on

Unable to resolve superclass When you added Android Support library to your project in Eclipse ADT, to implement classes like FragmentActivity, ViewPager etc At times you may see this error which results in app crash due to Unable to resolve superclass, Unable to resolve superclass of Lin/AppPath/MainActivity; (9) 05-16 14:10:11.705: W/dalvikvm(6534): Link of class ‘Lin/AppPath/MainActivity;’ […]

Android

Display AlertDialog with Multiple Options

Posted on

AlertDialog with Multiple Options Hi Guys, At times you may require to show multiple options in a dialog on Acitivty. So user can select any one option. here is the simple code to display with AlertDialog with Multiple Options CharSequence options[] = new CharSequence[] {“Call”, “SMS”, “Email”}; AlertDialog.Builder builder = new AlertDialog.Builder(this); builder.setCancelable(false); builder.setTitle(“Select your option:”); […]

Android

Logcat data Clearing too Fast- ADT Eclipse

Posted on

While running app on latest android devices, from ADT Eclipse, you may find difficulty in viewing LogCat data. As lots of other background services of different apps are running, logcat clearing out in a glimpse. At this kind of situation, To view LogCat data you have to change a ADT Eclipse setting as shown below.. Goto […]