Exception or error: I have one existing contact, I need to add a work address to that existing contact. I am using the following code, but it’s not working. String selectPhone = Data.CONTACT_ID + “=? AND ” + Data.MIMETYPE + “='” + ContactsContract.CommonDataKinds.StructuredPostal.CONTENT_ITEM_TYPE + “‘” + ” AND ” + ContactsContract.CommonDataKinds.StructuredPostal.TYPE + “=?”; String[] phoneArgs …
Tag: date
android – When does isGooglePlayServicesAvailable return SERVICE_VERSION_UPDATE_REQUIRED?-ThrowExceptions
Exception or error: According to the documentation GooglePlayServicesUtil.isGooglePlayServicesAvailable returns SERVICE_VERSION_UPDATE_REQUIRED when “The installed version of Google Play services is out of date”. Does this mean that there is a new version of google play services in the play store? Does this mean that the app needs a newer version than the one that is currently …
android – How to update UI in coroutines in Kotlin 1.3-ThrowExceptions
Exception or error: I’m trying to call an API and when my variables are ready, update UI components respectively. This is my Network singleton who is launching the coroutine: object MapNetwork { fun getRoute(request: RoutesRequest, success: ((response: RoutesResponse) -> Unit)?, fail: ((throwable: Throwable) -> Unit)? = null) { val call = ApiClient.getInterface().getRoute(request.getURL()) GlobalScope.launch(Dispatchers.Default, CoroutineStart.DEFAULT, null, …
Edittext cursor resetting to left after Android Data Binding update-ThrowExceptions
Exception or error: I am trying out the new Android Data Binding library (1.0-rc1) and I have made a User object with three String fields (name, email, and age) and linked them to 3 EditTexts in my layout. On the first field (name) I placed a TextWatcher. Everything seems to work well. I prevented the …
geolocation – Android: How to get location information from intent bundle extras when using LocationManager.requestLocationUpdates()-ThrowExceptions
Exception or error: I am trying to use Android’s LocationManager requestLocationUpdates. Everything is working until I try to extract the actual location object that in my broadcast receiver. Do I need to specifically define the “extras” to my custom intent so that the Android LocationManager before I pass it to requestLocationUpdates so it knows how …
Set a time-out for android requestSingleUpdate-ThrowExceptions
Exception or error: I am using the routine requestSingleUpdate() reoutine of the android LocationManager library with a LocationListener. The functionality I am trying to implement is that the user can press a button and the app will get their current location and perform reverse geocoding to get the approximate address. My problem is that depending …
Android support library 27, Fragment update?-ThrowExceptions
Exception or error: Since I updated my project to SDK version 27 and gradle plugins for the support library to version 27.0.0 I needed to change my code. With 26.1.0 I can just use getContext() (with Kotlin context) in my Fragment (android.support.v4.app) and I have no nullability issues, but since I use Kotlin I have …