Stylish menu in Android
An android custom view which looks like the menu in Path 2.0 (for iOS).I try to realize the stylish menu for android, which could be equal to the iOS version's.To setup the menu: CircleMenu circleMenu...
View ArticleMerge Images in Android
Merge two or more images in android by using Canvas its simple to merge image by using below code, first create bitmap for particular image which you want to merge it. get X and Y axis position for...
View ArticleImage (Split and merge)
This blog is useful to split and merge image in android. This application will for merging number of smaller chunks to make the origina.So for that we need.some smaller image chunks. here...
View ArticleAndroid signature using Canvas
Signature which is used in many cases such as proof of delivery, inspection forms,to purchase new sim card.Here is sample program that how to make signature using canvas. And you can save this...
View ArticleAndroid AudioEffect
public class AudioEffectDemo extends Activity { private static final String TAG = "AudioFxDemo"; private static final float VISUALIZER_HEIGHT_DIP = 50f; private MediaPlayer mMediaPlayer;...
View ArticleTab with scroll
Basically when we are using Tab-bar with number of tabs then all the tabs show in one screen not identify for particular tab click, can't scroll it.Here i implement Tab-bar with horizontal scroll by...
View ArticleCustom seek-bar like Circle (pie chart) using bitmap.
Here's something I came up with using clip path. I'm using following images (coder colours) out of which background is a solid one and foreground one contains only blue circle on transparent...
View ArticleCreate Database using Xml in android
Here in this blog i create database using of xml file such as (res / xml / tables.xml). Create xml folder in res directory and create file like tables.xml.<?xml version="1.0"...
View ArticleAndroid Tutorial: Countdown Timer Code
Countdown Timer Code for the end of date as you want.public class CountDown extends Activity {/** Called when the activity is first created. */TextView tv;long diff;long milliseconds;long...
View ArticleMapview :Drag and drop marker on Google map view with pop-up.
Here in this blog i implement Itemized-overlay with handling onTap and onTouchevent. As shown below onTap method is used for pop-up and onTouch method is used for drag and drop pin at particular...
View ArticleImage with Zoom in-out and draw paint on zoomed image using canvas in Android.
Here,I used canvas in order to zoom image view with image including using setImageMatrix(). As shown below class use for zoom and paint. In entire screen became to zoom in/out then when i click on...
View ArticleFacebook like photo viewer in android
Here,In this blog I tried to open full screen image with some nice animations and transitions, much like the new Facebook app provides.As shown below zoomImageFromThumb function image will be...
View ArticleVideo Recording in Background Using service Android
Here ,There is one Sample activity which records video in background using of service.MainVideoActivity.classpublic class MainVideoActivity extends Activity implementsSurfaceHolder.Callback {public...
View ArticleQuick pop-up with animation like Google Chrome .
Quick pop-upsame as Google Chrome which appear when you first time start Chrome.Here in this pop-up use animation which will be used to create a floating fill to pop-up.How to use ?QuickPopup...
View ArticleAndroid List view with pull to Refresh and Swipe functionality.
Here, I have a list (PullToRefreshSwipeListView) that implementing both of PullToRefresh and SwipeListView library.List can do some basic functionality like pullUp/pullDown and swipe left/right.If...
View ArticleThe use of getViewTypeCount() and getItemViewType() in Adapter .
If we need to show different type of view in list-view then its good to use getViewTypeCount() and getItemViewType() in adapter instead of toggling a view VIEW.GONE and VIEW.VISIBLE can be very...
View ArticleHow to Install Android L on Your Nexus Device.
Now, you have to install the correct drivers for your Nexus 5 and/or Nexus 7. Here is what you need to do:After connecting the device to the PC, power the Nexus off.Turn on your device in fastboot...
View ArticleCopy and share your useful data from Google chrome browser to your...
Here In this blog I explain that how to copy and share your useful data from chrome browser in android.1) How to show your application in Google chrome share list ? First in manifest.xml file you need...
View Article