Posts

Showing posts from 2014

HOW TO TAKE SCREENSHOT ON MOST OF THE SAMSUNG PHONES

Press Power & Home buttons at the same time will take the screenshot of the current screen. It’s important to to press both buttons at the same time , and hold them until the shutter sound is heard. ( press Power button slightly before pressing the Home button , then hold them both down.)

How to programmatically take a screenshot on Android?

First of All you need to add  WRITE_EXTERNAL_STORAGE permission in your Android manifest since will be writing to the external storage. To write to the external storage, we must request the  WRITE_EXTERNAL_STORAGE  permission in your  manifest file .     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" > Bitmap bitmap; //Create a bitmap object /*  android.graphics.Bitmap -  http://developer.android.com/reference/android/graphics/Bitmap.html */   View scrView = findViewById(R.id.root);    // Select the view   scrView.setDrawingCacheEnabled(true);    bitmap = Bitmap.createBitmap( scrView .getDrawingCache());  // returns an immutable bitmap from source bitmap    scrView .setDrawingCacheEnabled(false);   ByteArrayOutputStream bytes = new ByteArrayOutputStream(); //  http://developer.android.com/reference/java/io/ByteArrayOutputStream.html   bitmap.compress(Bitmap.CompressFormat.JPEG, 40, bytes); //Write a compressed ver

Photo Effects Powered By Adviary SDK

Image
Photo Effects   Powered by Aviary ( https://developers.aviary.com/docs/android ) C reate great Photo Effects of your photos. - Color effects - Light effects - Frame borders  - Crop - Contrast, brightness and saturation adjustment - Vignetting - Share with your friends with Instagram, Twitter, Facebook, Email, ...  TOTALLY FREE! Photos saved at Pictures/PhotoEffects/

Speed Check Android Application

Required XML attribute "adSize" was missing?

Image
1) Use the XML namespace  " http://schemas.android.com/ apk/res-auto ".  Using XML <com.google.android.gms.ads.AdView xmlns:ads = "http://schemas.android.com/apk/res-auto" android:id = "@+id/adView" android:layout_width = "match_parent" android:layout_height = "wrap_content" ads:adUnitId = "AD_UNIT_ID" ads:adSize = "BANNER" /> Programatically AdView adView = new AdView ( getActivity ()); adView . setAdUnitId ( "YourId" ); adView . setAdSize ( AdSize . BANNER ); final LinearLayout adLinLay = ( LinearLayout ) view . findViewById ( R . id . linear ); adLinLay . addView ( adView ); final AdRequest . Builder adReq = new AdRequest . Builder (); final AdRequest adRequest = adReq . build (); adView . loadAd ( adRequest );

Android System Information

Android System Information elaborates your phones features. Get your CPU information Phone memory Information Network Information Display information Operating System Information System Information Network operator Information/ Sim card Info Get Running Tasks/Get Running Services/Process Information Clean your memory with one click and manage your application through Application Manager.

Cache Cleaner

Cache Cleaner  Simple One click utility to clean up the cache.

Just Avoid - postings like "Publish My Android Apps in your Google Play Account"

If you see job postings like "Publish My Android Apps in your Google Play Account" on any freelancing sites like Odesk or Elance make sure to double check the application before you upload it. Many of such clients don't follow Google's  Google Play Developer Program Policies  . Your Google play developer account may be compromised! Such clients tries to earn lot of revenue by publishing their applications on a number of accounts and get revenue by advertisements.

Zero to 636

Image
Zero to Six36 active Installations in 22 Days, earned 20 USD (Adverts) !! Achievement! 24/01/2014  crossed 24,000 Installations with active installation of 5,536 users with average rating of 3.7 Total revenue earned  $99.17 USD Total Requests  144,567 eCPM  $0.69 USD 25/01/2014  crossed 26,463 Installations with active installation of 5,976 users with average rating of 3.8 Total revenue earned  $108.52 USD 30/01/2014 crossed 36,969 Installations with active installation of 7,676 users with average rating of 3.72 Total revenue earned  $156. 52 USD 25/02/2014  crossed 69,866 Installations with active installation of 10,185 users with average rating of 3.61 Total revenue earned  $296.91  USD After 2 Months, My application was banned by Google (Adverts to the application as well, thank god they didn't ban my play store account). REASON - copyright  infringement  , though my application wasn't doing anything wrong I wasn't

Auto Call Recorder

Image
Auto Call Recorder Install it from Google Playstore? Records all your calls automatically,  forked from Henry lee    , Manish Burman , Alexey Vassiliev .