↧
How to create Image Reflection in Android?
This simple Activity creates a reflection of the provided image. package com.coderzheaven.imagereflection; import android.app.Activity; import android.graphics.Bitmap; import...
View ArticleHow to load an image from the assets folder in android?
Here is a simple example showing how to load an image stores in assets folder in android? package com.coderzheaven.pack; import java.io.IOException; import java.io.InputStream; import...
View Article