Android Development
How to setAlpha for View in Android 2.3 (API-10) and lower
As you can see there existing setAlpha() method in API-11. Using this method you can change Alpha for View. What we gonna do in API-10 and lower to change View Alpha? I’ve got one solution. The solution is AlphaAnimation Please take a look my code: package com.hrupin.samples.alpha; import com.hrupin.samples.halfopacitywidgets.R; import Read more…