Skip to content Skip to sidebar Skip to footer

Why Are The Images In Widgettab Not Shown If Minsdkversion>10?

I have been attempting to create a simple TabActivity with 3 Tabs. All works except if I put android:minSdkVersion='11' in the Manifest file, the icons are not shown. If I set `mi

Solution 1:

strange, this solves the problem

    //bmOptions.inSampleSize = 1;
    //or better
    bmOptions.inScaled = false;

more at: https://stackoverflow.com/a/12088287/1320686

Post a Comment for "Why Are The Images In Widgettab Not Shown If Minsdkversion>10?"