I am trying to create a condition in my code to compare Android versions.Something akin to;

if(version < 2.2)
{// TODO } 
else
{// TODO }

Would anyone please let me know how to do this?

link|improve this question

74% accept rate
Refer this thread: stackoverflow.com/questions/3423754/… – nguyendat Aug 3 '11 at 3:30
I found great thread about comparison, read it, best of all: osbuzzer.com/f5/… – ashique Aug 3 '11 at 12:17
feedback

1 Answer

up vote 2 down vote accepted

You can compare them as their integer version using Build.VERSION.SDK_INT, so for SDK v 2.2 you will get integer with value 8, while SDK v 3.0 you will get 11.

And please look at this bunch of how to get android version question asked and answered again, I suggest you to use the search box, and glance to the related question provided while you are writing your question :)

link|improve this answer
Ayublin, you are a life saver. Thanks a great deal!! – user788511 Aug 3 '11 at 3:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.