Tuesday, May 14, 2013

SecurityException: Unable to find field for dex.jar

Problem :

SecurityException: Unable to find field for dex.jar

Solution:



  • Open Android SDK Manager In Eclipse ((Window->Android SDK Manager).
  • Install All Recommended Updates
  • Restart eclipse.
  • Clean and Build All Projects (In Project Menu)

Tuesday, April 30, 2013

RelativeLayout's layout_above gives “No resource found” Error

Problem:

RelativeLayout's layout_above gives “No resource found” Error

Solutions:



android:layout_above="@id/my_button"

Replace to

android:layout_above="@+id/my_button"

Reason For (+) Plus Symbol:

The plus-symbol (+) means that this is a new resource name that must be created and added to our resources (in the R.java file). 

For More Info:
http://developer.android.com/guide/topics/ui/declaring-layout.html

Jar Mismatch Found no of versions of android-support-v4.jar in the dependency list/ Conflict in jar with multi-library project


Problem:

Jar Mismatch Found no of versions of android-support-v4.jar in the dependency list/
Conflict in jar with multi-library project

Solutions:


  1. Looks like it found the library twice. You need to delete one.
  2. Mismatch Android Versions for Projects and Its Library Projects
  3. Please go to libs folder of your main project and copy / replace the android-support-v4.jar file to the libs folder of all attached to your project libraries projects. It should solve the library conflict issue.

Wednesday, March 14, 2012

Cheapest Smartphones(with Wifi and 3G) In India with Price Details


Nokia,Samsung,Motorola,LG,Dell and Micromax

Cheapest Smartphone List in India with Price Details.
(Listed Here All Major Branded Phones like Nokia,Samsung,Motorola,LG,Dell and Micromax.)


Nokia Cheapest Smart Phones In India


Model : Nokia c5-03 


Features List:

  • Wifi
  • 3G
  • 5Mp Camera

India Price Details

  • 9500 rs

More Information



Model : Nokia  x3-02 


Features List:

  • Wifi
  • 3G
  • 5Mp Camera

India Price Details

  • 7800 Rs

More Information



Micromax Smart phones (Android Smartphone)  In India


Model : Micromax A60


Features List:

  • Wifi
  • 3G
  • 3.2 Mp Camera

India Price Details

  • 7000 Rs

More Information



LG Cheapest Smart phones In India


Model : LG T325


Features List:

  • Wifi
  • 3G
  • 2 Mp Camera

India Price Details

  • 6750 Rs

More Information



Model : LG P500 ( Android Smart Phone )


Features List:

  • Wifi
  • 3G
  • 3.2 Mp Camera

India Price Details

  • 10500 Rs

More Information



Samsung Cheapest Smart Phones In India


Model : Samsung  Galaxy 5 15503  ( Android Smart Phone )


Features List:

  • Wifi
  • 3G
  • 2 Mp Camera

India Price Details

  • 8200 Rs

More Information



Model : Samsung Pop s 5570  ( Android Smart Phone )


Features List:

  • Wifi
  • 3G
  • 3 Mp Camera

India Price Details

  • 9000 Rs

More Information



Motorola Cheapest Smart phones In India


Model : Motorola Quench XT3  ( Android Smart Phone )


Features List:

  • Wifi
  • 3G
  • 3 Mp Camera

India Price Details

  • 12500 Rs

More Information



Dell Cheapest Mobile In India


Model : Dell XCD 28  ( Android Smart Phone )


Features List:

  • Wifi
  • 3G
  • 3.2 Mp Camera

India Price Details

  • 8000 Rs

More Information

Message In Android Using Toast


Function :

public void Message(String Msg)
    {
        Toast.makeText(AndroidExample.this, Msg.toString(), Toast.LENGTH_SHORT).show();
    }

Calling Method:

Message("Hai");