Monday, December 31, 2012

How-To Write Code for Different Android Versions in Your App

Fragmentation has been a big issue in Android since the beginning and everyone has different views about it. I personally don't think that there is an effective way to avoid fragmentation at the rate Android is growing at. So, fragmentation is something we should, as devs, adapt to in our developer frame of mind. it's actually not that hard to write code that handle different Android versions inside your application. I know, we can always publish different apks to handle different android versions, but this may not be the optimal choice in all cases. So, here is little code snippet showing how to handle fragmentation to a certain extent in Android:



@SuppressLint("NewApi")
@Override
public boolean onCreateOptionsMenu(Menu menu)
{
if(Build.VERSION.SDK_INT == Build.VERSION_CODES.GINGERBREAD)
{
//Write code specific for Gingerbread devices
}
else if(Build.VERSION.SDK_INT == Build.VERSION_CODES.HONEYCOMB)
{
//Write code specific for HONEYCOMB devices
}
else if(Build.VERSION.SDK_INT == Build.VERSION_CODES.ICE_CREAM_SANDWICH)
{
//Write code specific for ICE_CREAM_SANDWICH devices
}
else if(Build.VERSION.SDK_INT == Build.VERSION_CODES.JELLY_BEAN)
{
//Write code specific for JELLY_BEAN devices
}
return true;
}
The above code is just a simple example, that shows how you can create different menu options for different Android versions. Let me know in the comments, if you guys have any questions/suggestions.

No comments:

Post a Comment