Let suppose view in a LinearLayout. First you have to get Layoutparams of the view and cast into to specific Layoutparams and modify the margins. As I remove margins by setting it all by 0. OR You can create a…
Author: Jony Chawla
Android Name, Android Versions, and API level
(adsbygoogle = window.adsbygoogle || []).push({}); Android Version, Name and API level Android Name Version numbers API level Release date No name 1.0 1 September 23, 2008 No name 1.1 2 February 9, 2009 Cupcake 1.5 3 April 27, 2009 Donut…
How to add fragment specific menus in Android
You can show new menus from fragment by onCreateOptionsMenu method First you need to setHasOptionsMenu(true) in onCreateView method as second you have to create menus.xml in res/menu/ folder And also you have to set menu in onCreateOptionsMenu method as If you want to replace menus…
getExternalStoragePublicDirectory is deprecated in Android
The contract between the media provider and applications. Contains definitions for the supported URIs and columns. The media provider provides an indexed collection of media types, such as Audio, Video, and Images, from storage devices. Each collection is organized by…
How to set Error in Spinner in Android
You know setError works on EditText and TextView. If the spinner has a list of TextView or EditText item, then you simply have to get the TextView or Editext from it. And then set error on it. You can get…
How to EditText accepts alphabets only in Android?
Add this line in your EditText tag in layout(xml) file or you can read more about this here Full code EditText should be look like
PLACES API ACCESS NOT CONFIGURED
Enable the google places API for Android in developer console. https://console.developers.google.com/apis/library
Failed to resolve: com.google.android.gms:play-services-places:16.0.0
Just place google() before jcenter() In project build.gradle file or just copy and paste below build.gradle code in your project build.gradle file. And build project again see the problem is resolved. see build.grdle file If it says google() not found (not…