Posts
Privacy Policy - Gauraw_Yadav
- Get link
- X
- Other Apps
Privacy Policy Gauraw_Yadav built the Free AntiViurs Security app as an Ad Supported app. This SERVICE is provided by Gauraw_Yadav at no cost and is intended for use as is. This page is used to inform website visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service. If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy. The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at Free AntiViurs Security unless otherwise defined in this Privacy Policy. Information Collection and Use For a better experience, while using our Service, I may require you to provide us with certain personally identifiable in...
How to programmatically take a screenshot on Android?
- Get link
- X
- Other Apps
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 ...
Photo Effects Powered By Adviary SDK
- Get link
- X
- Other Apps

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/
Required XML attribute "adSize" was missing?
- Get link
- X
- Other Apps

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 );