Posts

Showing posts from 2017

Xiomi MIUI 9 Wallpaper Android App

Image
This application contains the best Wallpapers for MI3, MI4, MI Note Redmi Note, MIUI v6, v5. You will get the every single stock backdrop at one stop. Features:     - Easy to set your background wallpapers     - Download and Share colorful wallpapers to with circle     - You can zoom wallpapers by pinch or double tap     - No need for internet connection, Offline App     - Simple User friendly UI, Easy to use     - HD wallpaper     - Free Application     - Compatible with all Mi smartphones     - miui wallpaper     - Stay Updated This App Supports in Xiaomi MI, Samsung, Nokia, LYF, Vodafone, LeTv, Micromax, Lenovo, Gionee, Vivo, Motorola, Oppo, Alcatle, Asus, Zenfone, Huawei and others Android smartphones.

Tap N Deal Android App

Image
Tap n Deal provides you the latest best online shopping deals, offers and promo codes from Amazon, Flipkart, PhonePe, PayTm and many more on your mobile phone. Lots of recharge coupons for Prepaid/Postpaid Bill, DTH Recharge, Data Card, Electricity Bill, Gas Bill and many more. Apply promo codes from offer page and save money. Get Notification for latest daily deals and discounts.

How to make a phone call from your Android app

If you want to make a phone call from android app, write below code when you want to call on any number: Intent dialIntent = new Intent(); dialIntent.setAction(Intent.ACTION_DIAL); dialIntent.setData(Uri.parse("tel:9494299494")); If you want to call on dynamic number: String number = "9494942994"; Intent dialIntent = new Intent(); dialIntent.setAction(Intent.ACTION_DIAL); dialIntent.setData(Uri.parse("tel:"+number));  Intent.ACTION_DIAL brings up the dialer, but doesn't actually make the phone call. For make directly phone call, replace action as below: dialIntent.setAction(Intent.ACTION_CALL); You'll also have to declare android.permission.PHONE_CALL permission in your AndroidManifest.xml and above Android 6 (Marshmallow), give run-time permission. For run-time permission in android, I suggest  to use TedPermission library. TedPermission is a simple permission check helper.