Skip to main content

Graphics and Animations Part 1 : Bitmap Scaling

It always necessary to put that much load on the system that is required. Images that can be shown in ImageViews can be very heavy at times but your phone screen is that small only. Thus the bottomline is to decode the image (remove pixels, make shorter etc etc) to the level that is needed.

e.g;

 

Comments

Popular posts from this blog

Navigation drawer, material design theme

Aim: To make an android app with navigation drawer, material design theme Feat: Toolbar is used instead of the ActionBar, When the user runs the app for the time , he/she can see the drawer opened on the launch of the app, also rotation doesn't effect the drawer (whose layout is a fragment). Used: Fragments in both Code:   MainActivity.java ______________________________________________________________________________________________________ DrawerList.Java______________________________________________________________________________________________ package cts.fastester; import android.content.Context; import android.content.SharedPreferences; import android.os.Bundle; import android.support.v4.app.Fragment; import android.support.v4.widget.DrawerLayout; import android.support.v7.app.ActionBarDrawerToggle; import android.support.v7.widget.Toolbar; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGr...