Gaurav Prajapati's Blog
Thursday, April 3, 2014
Imortant Link
Custom ListView with Image and Text Using BaseAdapter
http://www.tutorialsbuzz.com/2014/03/watsapp-custom-listview-imageview-textview-baseadapter.html
Android Button State Change Example
http://www.tutorialsbuzz.com/2014/04/android-button-state-change-example.html
OnActivityResult Demo
http://www.mobiledevguide.com/2011/12/how-to-work-with-multiple-activity-in.html
Android Fundamentals: IntentService Basics
http://www.mobiledevguide.com/2013/01/how-to-use-intentservice-in-android.html
http://code.tutsplus.com/tutorials/android-fundamentals-intentservice-basics--mobile-6183
IntentService (
android.app.IntentService
) is a simple type of service that can be used to handle asynchronous work off the main thread by way of Intent requests. Each intent is added to the IntentService’s queue and handled sequentially.
Custom checkbox and rediobutton
http://icetea09.com/blog/2014/01/22/android-custom-radio-button-custom-checkbox/
http://icetea09.com/blog/2014/03/18/android-android-action-bar/
http://theopentutorials.com/examples/android/listview/android-contextual-action-bar-for-listview-item-deletion-using-actionbarsherlock/
http://www.grokkingandroid.com/adding-actionbarsherlock-to-your-project/
creating-frame-animations-in-android
http://javatechig.com/android/creating-frame-animations-in-android
http://brainflush.wordpress.com/2009/03/15/understanding-android-themes-and-styles/
http://umut.tekguc.info/en/content/google-android-map-v2-step-step
http://phptechnicalgroups.blogspot.in/2013/09/easy-way-to-integration-of-ccavenue.html
Paypal Intigratioin
http://sunil-android.blogspot.in/2013/10/paypal-android-sdk-with-multiple-in-app.html?utm_source=BP_recent
https://github.com/paypal/PayPal-Android-SDK
android-reverse-geocoding-yahoo-api.html
http://www.javacodegeeks.com/2010/10/android-full-application-tutorial.html
http://www.integratingstuff.com/2010/10/14/integrating-facebook-into-an-android-application/
http://www.londatiga.net/it/how-to-send-image-to-twitpic-from-android/
/**
* Take
screenshot
of the activity including the action bar
*
*
@param
activity
*
@return
The
screenshot
of the activity including the action bar
*/
public
static
Bitmap takeScreenshot(Activity activity)
{
ViewGroup decor = (ViewGroup)activity.getWindow().getDecorView();
ViewGroup decorChild = (ViewGroup)decor.getChildAt(0);
decorChild.setDrawingCacheEnabled(
true
);
decorChild.buildDrawingCache();
Bitmap drawingCache = decorChild.getDrawingCache(
true
);
Bitmap bitmap = Bitmap.
createBitmap
(drawingCache);
decorChild.setDrawingCacheEnabled(
false
);
return
bitmap;
}
/**
* Print hash key
*/
public
static
void
printHashKey(Context context)
{
try
{
String TAG =
"com.sromku.simple.fb.example"
;
PackageInfo info = ontext.getPackageManager().getPackageInfo(TAG,
PackageManager.
GET_SIGNATURES
);
for
(Signature signature: info.
signatures
)
{
MessageDigest md = MessageDigest.
getInstance
(
"SHA"
);
md.update(signature.toByteArray());
String keyHash = Base64.
encodeToString
(md.digest(),Base64.
DEFAULT
);
Log.
d
(TAG,
"keyHash: "
+ keyHash);
}
}
catch
(NameNotFoundException e)
{
}
catch
(NoSuchAlgorithmException e)
{
}
}
http://www.androidsnippets.com/error-reporting-class
Android Sliding Menu using Navigation Drawer
https://github.com/jfeinstein10/SlidingMenu
http://stackoverflow.com/questions/20798136/how-to-show-a-activitylogin-screen-under-android-navigation-drawer
http://manishkpr.webheavens.com/android-navigation-drawer-example-using-fragments/
http://stackoverflow.com/questions/18549392/actionbar-and-navigation-drawer-slide-actionbar-with-activity-fragment
http://motzcod.es/post/60427389481/effective-navigation-in-xamarin-android-part-1
https://github.com/jamesmontemagno/Xam.NavDrawer
http://www.cs.dartmouth.edu/~campbell/cs65/lecture09/lecture09.html
Working Code with Fragment
http://www.androidsnippets.com/simple-fragmentactivity
tutorial-activity-slide-animation
http://www.christianpeeters.com/android-tutorials/tutorial-activity-slide-animation/#more-483
Newer Post
Older Post
Home