id int64 28.5M 73.8M | title stringlengths 15 150 | question_body stringlengths 69 39.4k | body_text stringlengths 6 29.2k | tags stringlengths 7 120 | score int64 -19 384 | creation_date stringlengths 20 24 | year int64 -1 2.02k | month int64 -1 12 | hour int64 -1 23 | dayofweek int64 -1 6 | view_count int64 3 367k | answer_count int64 0 34 | body_len int64 6 29.2k | title_len int64 15 150 | tag_count int64 1 6 | code_block_cnt int64 0 17 | has_code bool 2
classes | is_unanswered bool 2
classes | is_popular bool 2
classes | is_viral bool 2
classes | is_highly_voted bool 2
classes | is_negative bool 2
classes | score_bucket stringclasses 5
values |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
44,151,879 | How to detect face orientation changes on live preview ,face detection android | <p>I am developing an app using google-face detection API, I have used the sample project, what I need is, I want to add the overlay image (mask) based on face orientation changes, eg: if face is rotated to right side or left side I want to update the overlayed image by taking the coordinate values.How to do this?.Can ... | I am developing an app using google-face detection API, I have used the sample project, what I need is, I want to add the overlay image (mask) based on face orientation changes, eg: if face is rotated to right side or left side I want to update the overlayed image by taking the coordinate values.How to do this?.Can any... | android|android-vision | 2 | 2017-05-24T07:35:16.377Z | 2,017 | 5 | 7 | 2 | 1,863 | 1 | 347 | 78 | 2 | 0 | false | false | false | false | false | false | low |
44,314,384 | How can I view the CLI command executed by a Gradle task in Android Studio? | <p>I'm trying to get a better picture of what happens behind the scenes in Android Studio when building an Android application. I've been reading up on Gradle, but one thing I cannot figure out is how to see the respective CLI command and arguments that is being invoked by Gradle. It seems to be abstracted and not logg... | I'm trying to get a better picture of what happens behind the scenes in Android Studio when building an Android application. I've been reading up on Gradle, but one thing I cannot figure out is how to see the respective CLI command and arguments that is being invoked by Gradle. It seems to be abstracted and not logged ... | android|android-studio|gradle|android-gradle-plugin | 16 | 2017-06-01T18:10:31.183Z | 2,017 | 6 | 18 | 3 | 3,143 | 1 | 1,515 | 75 | 4 | 0 | false | false | true | false | true | false | medium |
43,966,548 | Whats the difference between UID and UDID? | <p>What is the difference between <code>UDID</code> and <code>UUID</code>? I know that <code>UDID</code> stands for <code>U</code>nique <code>D</code>evice <code>ID</code>entifier and <code>UUID</code> is <code>U</code>niversally <code>U</code>nique <code>ID</code>entifier but I want to know what role or functionality ... | What is the difference between UDID and UUID ? I know that UDID stands for U nique D evice ID entifier and UUID is U niversally U nique ID entifier but I want to know what role or functionality each one plays. | android|ios | -1 | 2017-05-14T16:54:10.947Z | 2,017 | 5 | 16 | 6 | 8,007 | 1 | 209 | 42 | 2 | 0 | false | false | true | false | false | true | negative |
44,069,709 | Rotated Textview not covering full page | <p>I am using a TextView which has to rotate at angle at 35 degrees. I have successfully created a rotated textview but I can't fill the complete screen. Basically I want to complete 2 objectives-</p>
<p>1)<strong>Make the textview occupy the whole screen</strong> </p>
<p>currently it is showing it like this-<a href=... | I am using a TextView which has to rotate at angle at 35 degrees. I have successfully created a rotated textview but I can't fill the complete screen. Basically I want to complete 2 objectives- 1) Make the textview occupy the whole screen currently it is showing it like this- I wanna fill the space left in the top left... | android|android-layout|rotation|textview|justify | 0 | 2017-05-19T12:08:02.917Z | 2,017 | 5 | 12 | 4 | 72 | 1 | 603 | 39 | 5 | 2 | true | false | false | false | false | false | zero |
44,084,449 | How to remove virtual navigation keys, so they are not seen on my app? | <p>One of the screens on my apps displays a fullscreen animation and the virtual navigation keys disturb the experience. If people use a phone with hardware (navigation) keys they will not see the virtual navigation keys, but if they use a phone with soft (virtual navigation keys) keys they will see it. Apps like YouTu... | One of the screens on my apps displays a fullscreen animation and the virtual navigation keys disturb the experience. If people use a phone with hardware (navigation) keys they will not see the virtual navigation keys, but if they use a phone with soft (virtual navigation keys) keys they will see it. Apps like YouTube ... | android|samsung-galaxy | 0 | 2017-05-20T09:54:31.450Z | 2,017 | 5 | 9 | 5 | 72 | 1 | 484 | 70 | 2 | 0 | false | false | false | false | false | false | zero |
44,174,148 | Android Studio : triple selection of png files | <p>In my new project on android studio I need to insert three .png files .. I pasted the images into the "drawable" folder. I have been careful to name them correctly to avoid possible mistakes caused by special characters in the name...</p>
<p>The problem is that when I start the app, only when my three png files are... | In my new project on android studio I need to insert three .png files .. I pasted the images into the "drawable" folder. I have been careful to name them correctly to avoid possible mistakes caused by special characters in the name... The problem is that when I start the app, only when my three png files are present in... | android-studio|imageview | 4 | 2017-05-25T06:53:26.100Z | 2,017 | 5 | 6 | 3 | 72 | 1 | 649 | 46 | 2 | 0 | false | false | false | false | false | false | low |
44,232,977 | Android RecyclerView item with multiple CheckBoxes | <p>I am going to create a <code>RecyclerView</code>. Each <code>RecyclerView</code> item has 5 dates, and each date should have a checkBox for whether the user should be notified on the date or not.</p>
<p>Should the model class consist of 5 boolean values for every date? or is there a better way to achieve this?</p>
... | I am going to create a RecyclerView . Each RecyclerView item has 5 dates, and each date should have a checkBox for whether the user should be notified on the date or not. Should the model class consist of 5 boolean values for every date? or is there a better way to achieve this? Example: [CODE] | android|android-recyclerview | 0 | 2017-05-28T23:33:16.247Z | 2,017 | 5 | 23 | 6 | 72 | 1 | 295 | 50 | 2 | 1 | true | false | false | false | false | false | zero |
44,326,485 | How we know calender sync is completed? | <p>I have pragmatically started i sync Google calender evens using following code. But how we know sync is completed or failed</p>
<pre><code> private void requestCalendarSync()
{
AccountManager aM = AccountManager.get(this);
Account[] accounts = aM.getAccounts();
for (Account account : accounts)
{... | I have pragmatically started i sync Google calender evens using following code. But how we know sync is completed or failed [CODE] | android|events|calendar | 0 | 2017-06-02T10:17:10.073Z | 2,017 | 6 | 10 | 4 | 72 | 1 | 130 | 39 | 3 | 1 | true | false | false | false | false | false | zero |
44,346,497 | Add a Camera Preview | <p>I want my Activity background to be the Camera(Back) view,I have so far tried to add a surfaceView but no luck,the tutorials I found were for opening the camera app.
P.S- I do want to add more resources over the SurfaceView/Camera.
&
I don't want to click a picture only the preview
As I do not have any code to s... | I want my Activity background to be the Camera(Back) view,I have so far tried to add a surfaceView but no luck,the tutorials I found were for opening the camera app. P.S- I do want to add more resources over the SurfaceView/Camera. & I don't want to click a picture only the preview As I do not have any code to show as ... | android|surfaceview|preview | -1 | 2017-06-03T17:04:24.660Z | 2,017 | 6 | 17 | 5 | 72 | 1 | 398 | 20 | 3 | 0 | false | false | false | false | false | true | negative |
44,107,588 | FCM Push Server topic messaging | <p>I'm considering to apply <a href="https://firebase.google.com/docs/cloud-messaging/android/topic-messaging" rel="nofollow noreferrer">FCM topic messaging</a> in our Push Server using http.</p>
<p>In our legacy system, we used <a href="https://developers.google.com/cloud-messaging/http-server-ref" rel="nofollow nore... | I'm considering to apply FCM topic messaging in our Push Server using http. In our legacy system, we used GCM multicast messaging that receives maximum 1,000 registration_ids and returns the result per device. So we could measure how many devices have received push message. And we could remove invalid registration_id f... | android|firebase|firebase-cloud-messaging | 1 | 2017-05-22T07:58:18.173Z | 2,017 | 5 | 7 | 0 | 328 | 1 | 551 | 31 | 3 | 0 | false | false | false | false | false | false | low |
44,247,824 | How to make a "hand-made" actor fade LibGDX | <p>I am trying to create a black rectangle that fades in when a certain action is done in my application, but I can't seem to find a way to do it. I created a new Rectangle class that extends Scene2D's Actor and this is how it looks:</p>
<pre><code>public class Rectangle extends Actor{
private Texture texture;
... | I am trying to create a black rectangle that fades in when a certain action is done in my application, but I can't seem to find a way to do it. I created a new Rectangle class that extends Scene2D's Actor and this is how it looks: [CODE] The problem is when I draw the rectangle, I have to set a constant parentAlpha. If... | java|android|libgdx | 0 | 2017-05-29T17:32:19.763Z | 2,017 | 5 | 17 | 0 | 328 | 1 | 452 | 43 | 3 | 2 | true | false | false | false | false | false | zero |
44,012,587 | Why Is Android My App "Unsupported" by Chromebooks? | <p>I know there are other similar questions on SO, but none of them addresses this directly.</p>
<p>My AndroidManifest.xml has this section in it:</p>
<pre><code><uses-sdk android:minSdkVersion="19" android:targetSdkVersion="25" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
&l... | I know there are other similar questions on SO, but none of them addresses this directly. My AndroidManifest.xml has this section in it: [CODE] How can I tell what among those is resulting in Play Console telling listing Chromebooks as unsupported? Or if it's something else entirely? * UPDATE * I got to the point where... | android|cordova|permissions|ionic2|chromebook | 3 | 2017-05-16T22:25:04.543Z | 2,017 | 5 | 22 | 1 | 584 | 1 | 449 | 51 | 5 | 2 | true | false | false | false | false | false | low |
44,213,977 | Xamrin android any file uploading using web services in c# | <p>Is that possible to upload any file(doc,pdf,img) in xamarin android using web service in c#. i am using sql server for data connection.</p> | Is that possible to upload any file(doc,pdf,img) in xamarin android using web service in c#. i am using sql server for data connection. | xamarin.android | 0 | 2017-05-27T07:00:42.623Z | 2,017 | 5 | 7 | 5 | 1,096 | 1 | 135 | 58 | 1 | 0 | false | false | false | false | false | false | zero |
44,339,364 | Android RX Java 2 disposable | <p>When I used RXJava 1 I always kept track of my subscriptions to execute the unsubscribe in the activity onDestroy. Example: <a href="https://medium.com/@scanarch/how-to-leak-memory-with-subscriptions-in-rxjava-ae0ef01ad361" rel="nofollow noreferrer">https://medium.com/@scanarch/how-to-leak-memory-with-subscriptions-... | When I used RXJava 1 I always kept track of my subscriptions to execute the unsubscribe in the activity onDestroy. Example: https://medium.com/@scanarch/how-to-leak-memory-with-subscriptions-in-rxjava-ae0ef01ad361 Recently I moved to RXJava 2 and then I looked online for suggestions of how to handle the new disposables... | java|android|rx-java|rx-android | 2 | 2017-06-03T01:22:49.603Z | 2,017 | 6 | 1 | 5 | 1,096 | 1 | 573 | 28 | 4 | 0 | false | false | false | false | false | false | low |
44,132,436 | how to create non-debuggable release build for android using cordova command line | <p><strong>cordova version 6
with gradle 2.3.1</strong>
I have generated the release build using command
<strong>cordova build --release android</strong>
,signed the apk using
<strong>release-signing.properties</strong> file which is in folder platforms/android,
in Android menifest file there is no attribute like appl... | cordova version 6 with gradle 2.3.1 I have generated the release build using command cordova build --release android ,signed the apk using release-signing.properties file which is in folder platforms/android, in Android menifest file there is no attribute like application:android:debuggable="true/false" when I tried to... | android|cordova|debugging|build|release | 1 | 2017-05-23T10:37:22.237Z | 2,017 | 5 | 10 | 1 | 1,608 | 1 | 603 | 81 | 5 | 0 | false | false | false | false | false | false | low |
44,363,947 | Where could I download libjingle_peerconnection.jar source code | <p>I'm experimenting with WebRTC from Android, so far using <strong>libjingle</strong> from this <a href="https://oss.sonatype.org/content/groups/public/io/pristine/libjingle/" rel="nofollow noreferrer">repo</a> had made me successfully creates a native android app that broadcast a WebRTC video to my webapp rendered in... | I'm experimenting with WebRTC from Android, so far using libjingle from this repo had made me successfully creates a native android app that broadcast a WebRTC video to my webapp rendered in browser (check my project here ), or the other way around (check my project here ) But now I want to make some changes or maybe e... | android|webrtc|libjingle | 0 | 2017-06-05T07:34:13.147Z | 2,017 | 6 | 7 | 0 | 3,656 | 1 | 565 | 63 | 3 | 0 | false | false | true | false | false | false | zero |
43,942,130 | EditTexts are always empty when clicking OK | <p>When I click OK the Strings returned are always empty strings <code>""</code>. They aren't, could the problem be that the dialog is created twice so they're not referring to the same <code>EditTexts</code>?</p>
<pre><code>package com.example.gaetano.notebook;
public class AddNoteFragment extends DialogFragment`en... | When I click OK the Strings returned are always empty strings "" . They aren't, could the problem be that the dialog is created twice so they're not referring to the same EditTexts ? [CODE] When clicking OK the EditTexts are always empty "". [CODE] Then in my setPositiveButton, OnClick method I get the Strings of these... | java|android|android-dialogfragment | 1 | 2017-05-12T16:06:32.977Z | 2,017 | 5 | 16 | 4 | 73 | 1 | 573 | 43 | 3 | 2 | true | false | false | false | false | false | low |
44,081,552 | New message taking time to load on recyclerview | <p>I am creating a chat application using Firebase. It works fine. But sometimes it's taking 3-4 sec time to display on a recyclerview.</p>
<p>In log it shows,</p>
<pre><code>I/Choreographer: Skipped 104 frames! The application may be doing too much work on its main thread.
</code></pre>
<p>But I don't think I have... | I am creating a chat application using Firebase. It works fine. But sometimes it's taking 3-4 sec time to display on a recyclerview. In log it shows, [CODE] But I don't think I have much operations happening in the main thread You can see my Recyclerview code there: https://pastebin.com/njTH6y2b But when i send message... | java|android|firebase|android-recyclerview | 0 | 2017-05-20T03:13:38.040Z | 2,017 | 5 | 3 | 5 | 73 | 1 | 578 | 47 | 4 | 1 | true | false | false | false | false | false | zero |
44,356,000 | How do I implement native FB login in a hybrid Phonegap app? | <p>I've been searching and trying things for a few days
I'm making an app with Phonegap for both Android and IOS. The app will have both a facebook login and a normal registration.
Using OpenFB I can do everything I wanted except logging in with the facebook app.
Basically I want to know how I can, in both Android and ... | I've been searching and trying things for a few days I'm making an app with Phonegap for both Android and IOS. The app will have both a facebook login and a normal registration. Using OpenFB I can do everything I wanted except logging in with the facebook app. Basically I want to know how I can, in both Android and IOS... | android|ios|facebook|cordova | 0 | 2017-06-04T16:02:13.920Z | 2,017 | 6 | 16 | 6 | 73 | 1 | 676 | 60 | 4 | 0 | false | false | false | false | false | false | zero |
43,949,618 | How to get exact height and width of android screen with weight? | <p>I need a square block of 20% of the screen,</p>
<ul>
<li><p>If i get a width of 100 DP then i also need height of 100 DP.</p>
<p>How to achieve this in android with the use of weight?</p>
</li>
</ul> | I need a square block of 20% of the screen, If i get a width of 100 DP then i also need height of 100 DP. How to achieve this in android with the use of weight? | android-linearlayout | 0 | 2017-05-13T05:38:17.887Z | 2,017 | 5 | 5 | 5 | 329 | 1 | 160 | 64 | 1 | 0 | false | false | false | false | false | false | zero |
43,979,696 | Superpowered Android Highpass Filter | <p>I would like to cut the signal at a specific frequency rate (so that humans can't hear it - ultrasonic). I am using the CrossExample to test it. I use the Filter as following: </p>
<pre><code>filter = new SuperpoweredFilter(SuperpoweredFilter_Resonant_Lowpass, samplerate);
filter->setResonantParameters(floatToF... | I would like to cut the signal at a specific frequency rate (so that humans can't hear it - ultrasonic). I am using the CrossExample to test it. I use the Filter as following: [CODE] Unfortunately, regardless of the Frequency Parameter you can always hear the signal a little bit (Max. Volume + ear close to speakers) wh... | android|android-studio|filter|superpowered | 1 | 2017-05-15T12:32:57.007Z | 2,017 | 5 | 12 | 0 | 329 | 1 | 414 | 36 | 4 | 1 | true | false | false | false | false | false | low |
44,311,336 | Make Webview App with Tabs | <p>how can I can make Webview App with tabs? I made a Webview App, but no tabs. I want Webview with tabs. For example, first tab is Facebook, second tab is Twitter, third tab is Instagram etc. How can I do?</p> | how can I can make Webview App with tabs? I made a Webview App, but no tabs. I want Webview with tabs. For example, first tab is Facebook, second tab is Twitter, third tab is Instagram etc. How can I do? | android|webview | -2 | 2017-06-01T15:13:58.557Z | 2,017 | 6 | 15 | 3 | 585 | 1 | 203 | 26 | 2 | 0 | false | false | false | false | false | true | negative |
43,974,953 | Firebase Database update data deletes old children | <p>I want to add nested children in my firebase database.
The structure of my json is </p>
<pre><code>{
"Users": {
"user1": {
"courses": {
"science": {
"maxMarks": 100,
"teacher": "Andrew",
"title": "Amazing Science",
"status... | I want to add nested children in my firebase database. The structure of my json is [CODE] } As soon as I add a new course, it is overwriting my whole course child instead of adding a new child inside. I have also tried updateChildren but no success.. Please help. [CODE] | android|firebase|firebase-realtime-database | 2 | 2017-05-15T08:44:58.940Z | 2,017 | 5 | 8 | 0 | 1,353 | 1 | 270 | 50 | 3 | 2 | true | false | false | false | false | false | low |
44,085,486 | Language not changing in all activities | <p>I'm developing and application with multiple activities. One of them is the "Settings" activity, which have an option to change the app language. </p>
<p>Here is how I handle the change language in the Settings activity:</p>
<pre><code>final ListPreference language = (ListPreference) findPreference("language");
... | I'm developing and application with multiple activities. One of them is the "Settings" activity, which have an option to change the app language. Here is how I handle the change language in the Settings activity: [CODE] This is the function that I'm using to change the language, invoked in all activities before "setCon... | java|android|android-preferences | 2 | 2017-05-20T11:45:39.807Z | 2,017 | 5 | 11 | 5 | 1,353 | 1 | 1,061 | 39 | 3 | 6 | true | false | false | false | false | false | low |
44,189,276 | Android - API Request Callback after onDestroy | <p>I hope I can explain this well ...</p>
<p>I am trying to understand better how to handle HTTP callbacks in Android, so I have created a simple app that uses Volley for HTTP requests. It only has a button that triggers an HTTP request to a service that, basically, just updates a number in a database and sends it in ... | I hope I can explain this well ... I am trying to understand better how to handle HTTP callbacks in Android, so I have created a simple app that uses Volley for HTTP requests. It only has a button that triggers an HTTP request to a service that, basically, just updates a number in a database and sends it in the JSON re... | android|callback|android-volley|android-lifecycle|ondestroy | 1 | 2017-05-25T20:27:07.373Z | 2,017 | 5 | 20 | 3 | 1,609 | 1 | 2,220 | 46 | 5 | 0 | false | false | false | false | false | false | low |
44,105,191 | Why _mac folder with some config files commits to git automatically from Android Studio | <p>I am getting some auto generated commits to my git using android studio in mac and this was not happened in windows with Android studio(Which I was using earlier) Can anyone tell me why this happens and how to disable it?<a href="https://i.stack.imgur.com/l6VP1.png" rel="nofollow noreferrer"><img src="https://i.stac... | I am getting some auto generated commits to my git using android studio in mac and this was not happened in windows with Android studio(Which I was using earlier) Can anyone tell me why this happens and how to disable it? The commits starts with AI-2.3.2 its my android studio verion below is my global gitconfig file [C... | android|git|android-studio|assembla | 3 | 2017-05-22T05:24:34.913Z | 2,017 | 5 | 5 | 0 | 74 | 1 | 324 | 87 | 4 | 1 | true | false | false | false | false | false | low |
44,322,477 | Detect if image is visible on background | <p>I have a dialog and show icons of icon packs in it. Depending on my apps theme and the icon color I want to dynamically decide, if I need to show the icon on a background or without (depending on if the icon is visible on the dialog background or not).</p>
<p>This means:</p>
<ul>
<li>showing a white icon on a blac... | I have a dialog and show icons of icon packs in it. Depending on my apps theme and the icon color I want to dynamically decide, if I need to show the icon on a background or without (depending on if the icon is visible on the dialog background or not). This means: showing a white icon on a black background => fine, no ... | android|image|colors | 1 | 2017-06-02T06:45:43.407Z | 2,017 | 6 | 6 | 4 | 74 | 1 | 947 | 40 | 3 | 0 | false | false | false | false | false | false | low |
44,363,342 | How can i secure my application and also protect my Sqlite database in application | <p>How can i secure my application and also protect my database in application. Which means data is not accessed by other application or by reverse engineering. Like in banking application login data and other information is stored in app but we can not accessed. How to achieve this type of security in application.
Enc... | How can i secure my application and also protect my database in application. Which means data is not accessed by other application or by reverse engineering. Like in banking application login data and other information is stored in app but we can not accessed. How to achieve this type of security in application. Encryp... | android|encryption|database-project|android-security|data-protection | 0 | 2017-06-05T06:57:52.673Z | 2,017 | 6 | 6 | 0 | 74 | 1 | 489 | 82 | 5 | 0 | false | false | false | false | false | false | zero |
44,076,867 | Get DisplayName from GoogleAccountCredential | <p>I would like to be able to display the display name of the google account.
With GoogleAccountCredential I can obtain the email.
How can I get the displayName from GoogleAccountCredential (email)?</p> | I would like to be able to display the display name of the google account. With GoogleAccountCredential I can obtain the email. How can I get the displayName from GoogleAccountCredential (email)? | java|android|google-calendar-api | 1 | 2017-05-19T18:36:57.677Z | 2,017 | 5 | 18 | 4 | 330 | 1 | 195 | 44 | 3 | 0 | false | false | false | false | false | false | low |
44,109,764 | Android : WebView position is wrong | <p>I have an app that should display a WebView in full screen but I have a problem:</p>
<p>I have a white bar at the bottom of my screen! I can suppress it when I slide the webview in the bottom but I would like it to be ok without the user action.</p>
<p>Image:
<a href="https://i.stack.imgur.com/Oskho.png" rel="nof... | I have an app that should display a WebView in full screen but I have a problem: I have a white bar at the bottom of my screen! I can suppress it when I slide the webview in the bottom but I would like it to be ok without the user action. Image: Here's my code to instantiate my WebView: [CODE] When I don't use getScale... | android|webview|position | 0 | 2017-05-22T09:48:13.517Z | 2,017 | 5 | 9 | 0 | 330 | 1 | 511 | 35 | 3 | 4 | true | false | false | false | false | false | zero |
44,228,088 | How to fetch mails in Android using IMAP/POP3 protocols | <p>I want to develop an Android application similar to <a href="https://play.google.com/store/apps/details?id=com.trtf.blue&hl=en" rel="nofollow noreferrer">Typeapp</a> . I want to know the algorithm behind it. Basically it would be a customised inbox with all IMPS/POP3 emails in a one application. If we have to co... | I want to develop an Android application similar to Typeapp . I want to know the algorithm behind it. Basically it would be a customised inbox with all IMPS/POP3 emails in a one application. If we have to configure this in java/Android to connect with IMAP server how can I achieve this. | java|android|email|imap|mail-server | 0 | 2017-05-28T13:59:34.333Z | 2,017 | 5 | 13 | 6 | 1,354 | 1 | 287 | 55 | 5 | 0 | false | false | false | false | false | false | zero |
44,268,117 | Chrome custom tabs - android - User Agent | <p>I'm seeking a way to change the User_Agent Var when you use the Chrome Custom Tabs that send to the server of the web page. </p>
<p>Or if there is a way to send a custom global var to recive it in php like $_SERVER['']. </p>
<p>IMPORTANT 1: NOT VIA URL. </p>
<p>IMPORTANT 2: Using Android Studio (gradle).</p> | I'm seeking a way to change the User_Agent Var when you use the Chrome Custom Tabs that send to the server of the web page. Or if there is a way to send a custom global var to recive it in php like $_SERVER['']. IMPORTANT 1: NOT VIA URL. IMPORTANT 2: Using Android Studio (gradle). | php|android|http-headers|chrome-custom-tabs | 2 | 2017-05-30T17:09:25.170Z | 2,017 | 5 | 17 | 1 | 2,378 | 1 | 281 | 41 | 4 | 0 | false | false | false | false | false | false | low |
43,927,034 | Is it possible to hide nummeric data in Eddystone EID | <p>My question is more theoretical to enhance my Android application functionalities - can I hide somehow nummeric data, like max int 9999 in Eddystone EID. For security reasons i'd like to go with EID instead of UID, but also need for sending some basic information which before were put in Instance. Offline EID resolv... | My question is more theoretical to enhance my Android application functionalities - can I hide somehow nummeric data, like max int 9999 in Eddystone EID. For security reasons i'd like to go with EID instead of UID, but also need for sending some basic information which before were put in Instance. Offline EID resolver ... | android|altbeacon|beacon|eddystone | 0 | 2017-05-11T23:17:42.483Z | 2,017 | 5 | 23 | 3 | 75 | 1 | 405 | 53 | 4 | 0 | false | false | false | false | false | false | zero |
44,057,374 | From A New Android Developer: I have been getting the error message "Gradle Sync Failed: The first result from the daemon was empty" | <p>Please, I will be happy to have anyone explain this to me in a "not too" technical way. I have checked out other answers given but they don't work.Even YouTube instructional videos did not give adequate answers.
<a href="https://i.stack.imgur.com/9AifY.jpg" rel="nofollow noreferrer"><img src="https://i.stack.imgur.... | Please, I will be happy to have anyone explain this to me in a "not too" technical way. I have checked out other answers given but they don't work.Even YouTube instructional videos did not give adequate answers. | gradle|android-gradle-plugin | 0 | 2017-05-18T20:39:47.587Z | 2,017 | 5 | 20 | 3 | 75 | 1 | 211 | 132 | 2 | 0 | false | false | false | false | false | false | zero |
44,321,390 | How to open a front camera as default with choosing select photo selection setting popup in marshmallow and upto 6.0 | <p>When i choose option from setting to open a camera to take profile photo that time it open back camera as default in marshmallow but below marshmallow working fine so i want front camera open as default in upto marshmallow </p> | When i choose option from setting to open a camera to take profile photo that time it open back camera as default in marshmallow but below marshmallow working fine so i want front camera open as default in upto marshmallow | java|android|camera|android-6.0-marshmallow | 0 | 2017-06-02T05:25:49.533Z | 2,017 | 6 | 5 | 4 | 75 | 1 | 222 | 116 | 4 | 0 | false | false | false | false | false | false | zero |
44,322,749 | Retrieve the Organisation detail and email detail of a specified number from contact list of an android phone? | <p>I have a phone number. I want to know the detail of that phone number from my phone contact . For that number i stored name, organisation, phone number(work), phone number(home), email(home), email(work), address. </p>
<p>I can get the Display name and ID of that number using the following code </p>
<pre><code>Uri... | I have a phone number. I want to know the detail of that phone number from my phone contact . For that number i stored name, organisation, phone number(work), phone number(home), email(home), email(work), address. I can get the Display name and ID of that number using the following code [CODE] But i do not know how to ... | android|android-contacts | 0 | 2017-06-02T07:02:23.173Z | 2,017 | 6 | 7 | 4 | 75 | 1 | 380 | 110 | 2 | 1 | true | false | false | false | false | false | zero |
44,344,992 | Android Call Forwarding Number | <p>I have been trying to figure out, How can i get the number of the one who is doing the call forwarding in android.</p>
<p>Doint some research with PhoneListener and TelephoneManager but to no avail.</p>
<p>I have this as a code snippet:</p>
<pre><code>public class PhoneStateReceiver extends BroadcastReceiver {
... | I have been trying to figure out, How can i get the number of the one who is doing the call forwarding in android. Doint some research with PhoneListener and TelephoneManager but to no avail. I have this as a code snippet: [CODE] The only Number i get is the calling number. Is it possible to get the number who forwarde... | android|telephonymanager | 0 | 2017-06-03T14:31:59.687Z | 2,017 | 6 | 14 | 5 | 75 | 1 | 371 | 30 | 2 | 1 | true | false | false | false | false | false | zero |
44,093,284 | Android Studios Splash Screen stops | <p>I am having this problem with android studios splash screen every time I run the emulator and run the app it stops after the splash screen. my SplashScreen.java code looks good from what I had seen from others. I believe the problem is in the manifest, but can not seem to figure it out. The logcat doesn't to show an... | I am having this problem with android studios splash screen every time I run the emulator and run the app it stops after the splash screen. my SplashScreen.java code looks good from what I had seen from others. I believe the problem is in the manifest, but can not seem to figure it out. The logcat doesn't to show any p... | android-studio|splash-screen | 0 | 2017-05-21T04:45:05.600Z | 2,017 | 5 | 4 | 6 | 331 | 1 | 514 | 35 | 2 | 4 | true | false | false | false | false | false | zero |
44,100,537 | How to stop reloading page in WebView after screen unlock | <p>I'm working on an app for Android.
When I unlock the phone it the page in my WebView refreshes.
How can I prevent this?</p> | I'm working on an app for Android. When I unlock the phone it the page in my WebView refreshes. How can I prevent this? | android|webview|page-refresh | 0 | 2017-05-21T18:45:51.433Z | 2,017 | 5 | 18 | 6 | 331 | 1 | 119 | 57 | 3 | 0 | false | false | false | false | false | false | zero |
44,232,733 | Download stops while downloading a file from a server | <p>I wrote a app where i can download a pdf file from a server. </p>
<p>When i click on the download button, i can see the sign on the top that its downloading, but then it stops and tells me "Download complete".</p>
<p>When i try to open the file or search for it in the folders, then cant find it and it tells me "fi... | I wrote a app where i can download a pdf file from a server. When i click on the download button, i can see the sign on the top that its downloading, but then it stops and tells me "Download complete". When i try to open the file or search for it in the folders, then cant find it and it tells me "file path doesnt exist... | android|button|fragment|onclicklistener | 0 | 2017-05-28T22:48:36.473Z | 2,017 | 5 | 22 | 6 | 331 | 1 | 867 | 53 | 4 | 2 | true | false | false | false | false | false | zero |
44,053,508 | Images are not Showing in Gallery even after scanning using MediaScannerConnection.scanFile() | <p>When I try to save an image to an external directory, the directory is successfully scanned by MediaScannerConnection, but the images are not shown in gallery.</p>
<pre><code>public void saveItem() {
if (selectCount == 0) {
Toast.makeText(getActivity(), "Select at least one image", Toas... | When I try to save an image to an external directory, the directory is successfully scanned by MediaScannerConnection, but the images are not shown in gallery. [CODE] | java|android|android-mediascanner | 1 | 2017-05-18T16:40:39.590Z | 2,017 | 5 | 16 | 3 | 587 | 1 | 166 | 93 | 3 | 1 | true | false | false | false | false | false | low |
44,069,572 | java.lang.IllegalArgumentException: Illegal character in query at index 133: | <p>I want to draw driving route between two location with two waypoints when I make the url for getdriving direction api it says</p>
<pre><code> Caused by: java.lang.IllegalArgumentException: Illegal character in query at index 133 but the url gives json
</code></pre>
<p>like this <a href="https://maps.googleapis.co... | I want to draw driving route between two location with two waypoints when I make the url for getdriving direction api it says [CODE] like this my gerdirection api url So when I googled it said to use urlencoder when i use that in my url error is not thrown but my json is empty like this [CODE] plz do say me where i wen... | android|json|google-directory-api | 1 | 2017-05-19T12:00:06.800Z | 2,017 | 5 | 12 | 4 | 587 | 1 | 408 | 76 | 3 | 4 | true | false | false | false | false | false | low |
44,267,582 | Android GraphView multiple series show/hide particular linegraph on touch | <p>I am using <a href="http://www.android-graphview.org/mix-up-chart-types/" rel="nofollow noreferrer">GraphView</a> for Android with multiple series to show 2 graphs.
Is it even a possibility to show/hide one of the graphs on touch, because I couldn't find any documentation on the website?</p>
<p>Here is the source c... | I am using GraphView for Android with multiple series to show 2 graphs. Is it even a possibility to show/hide one of the graphs on touch, because I couldn't find any documentation on the website? Here is the source code: [CODE] | android|android-graphview | 1 | 2017-05-30T16:35:01.653Z | 2,017 | 5 | 16 | 1 | 843 | 1 | 227 | 73 | 2 | 1 | true | false | false | false | false | false | low |
43,935,225 | FFmpeg4Android how to stop processing? | <p>I have been successfully setup and starting ffmpeg4android as described here <a href="http://androidwarzone.blogspot.com/2011/12/ffmpeg4android.html" rel="nofollow noreferrer">http://androidwarzone.blogspot.com/2011/12/ffmpeg4android.html</a> and all goes fine. But what if I want to stop processing before it will be... | I have been successfully setup and starting ffmpeg4android as described here http://androidwarzone.blogspot.com/2011/12/ffmpeg4android.html and all goes fine. But what if I want to stop processing before it will be finished. I call fExit(Context context) method from LoadJNI class and nothing happens. Does someone know ... | android|ffmpeg|video-processing | 1 | 2017-05-12T10:15:56.417Z | 2,017 | 5 | 10 | 4 | 76 | 1 | 365 | 38 | 3 | 0 | false | false | false | false | false | false | low |
44,094,081 | unable to use basic activity | <p>I am creating an android application. The main activity of the application uses basic activity template. But when I am trying to create a new activity using another basic activity template, It is creating only as a blank activity template and not as basic activity(the content_ .xml file and the floating button are m... | I am creating an android application. The main activity of the application uses basic activity template. But when I am trying to create a new activity using another basic activity template, It is creating only as a blank activity template and not as basic activity(the content_ .xml file and the floating button are miss... | android|android-toolbar | -1 | 2017-05-21T07:04:26.110Z | 2,017 | 5 | 7 | 6 | 76 | 1 | 491 | 28 | 2 | 0 | false | false | false | false | false | true | negative |
44,119,391 | JSON parsing trouble for Android Contacts App using Volley | <p>I am having trouble parsing this JSON file. I am getting this error
05-22 03:47:03.337 10271-10271/com.thesis.luna.contacts W/System.err: org.json.JSONException: No value for </p>
<p><a href="https://s3.amazonaws.com/technical-challenge/Contacts.json" rel="nofollow noreferrer">https://s3.amazonaws.com/technical-ch... | I am having trouble parsing this JSON file. I am getting this error 05-22 03:47:03.337 10271-10271/com.thesis.luna.contacts W/System.err: org.json.JSONException: No value for https://s3.amazonaws.com/technical-challenge/Contacts.json is the file. It was given no ArrayName so I left my jsonString empty " " Here is my co... | java|android|json|listview | -1 | 2017-05-22T18:07:20.397Z | 2,017 | 5 | 18 | 0 | 76 | 1 | 330 | 58 | 4 | 1 | true | false | false | false | false | true | negative |
44,125,571 | Make a search string in Firebase and do some stuff in case exist or do other in case doesn't exist | <p>my problem is when I search for a user in mi firebase database</p>
<pre><code> public void readUsers(){ final String userame =
etUserName.getText().toString();
Query query = mUsersDatabaseReference.orderByChild("userName").equalTo(userame);
query.addListenerForSingleValueEvent(new ValueEventLi... | my problem is when I search for a user in mi firebase database [CODE] as you can see i read the database and i know the user exist, but i want to do a register in case the user dont exist, but this always enter only in the if and if the user dont exist, dont do the else...... I try changing for mUsersDatabaseReference.... | android|firebase|firebase-realtime-database | 0 | 2017-05-23T03:58:56.587Z | 2,017 | 5 | 3 | 1 | 76 | 1 | 647 | 98 | 3 | 2 | true | false | false | false | false | false | zero |
44,340,351 | Spinner Looses focus on selection when keyboard opened | <p>in my layout I have several <code>EditText</code> and Spinners representing a form. everything works fins until I select <code>EditText</code> and keyboard gets open and activity is <code>adjustResize</code> then as I select spinner item after scrolling to bottom my activity scrolls to top and I will have to scroll ... | in my layout I have several EditText and Spinners representing a form. everything works fins until I select EditText and keyboard gets open and activity is adjustResize then as I select spinner item after scrolling to bottom my activity scrolls to top and I will have to scroll back to bottom again. My XML: [CODE] | android|focus|android-spinner | 0 | 2017-06-03T04:43:47.487Z | 2,017 | 6 | 4 | 5 | 76 | 1 | 314 | 54 | 3 | 1 | true | false | false | false | false | false | zero |
44,340,852 | Play video on browser iphone and ipad | <p>I am trying to play video on browser using video tag in openwrt router, everything is working perfect in android devices, but in iOS its only showing play button. Nothing processed when clicked on play button.</p>
<pre><code><video loop autoplay controls="true" width='50%' height='50%' src="xyz.mp4" type='video/... | I am trying to play video on browser using video tag in openwrt router, everything is working perfect in android devices, but in iOS its only showing play button. Nothing processed when clicked on play button. [CODE] Please help me in this it will be great appreciation. Thanks in advance. | android|html|ios|video | 0 | 2017-06-03T05:58:45.593Z | 2,017 | 6 | 5 | 5 | 76 | 1 | 289 | 37 | 4 | 1 | true | false | false | false | false | false | zero |
44,020,774 | How use OAuth 2.0 client ID for calling Google Drive API? | <p>I developing one project, Where I want fetch list of all spreadsheets of authenticated user. for this purpose I'm using following API</p>
<p><a href="https://www.googleapis.com/drive/v3/files?key=" rel="nofollow noreferrer">https://www.googleapis.com/drive/v3/files?key=</a>{YOUR_API_KEY}</p>
<p>When I run above AP... | I developing one project, Where I want fetch list of all spreadsheets of authenticated user. for this purpose I'm using following API https://www.googleapis.com/drive/v3/files?key= {YOUR_API_KEY} When I run above API in APIs explorer, it runs well & gives me file list associated with user. But when I try to run same AP... | android|oauth|google-sheets|oauth-2.0|google-drive-android-api | 0 | 2017-05-17T09:26:26.053Z | 2,017 | 5 | 9 | 2 | 332 | 1 | 534 | 57 | 5 | 0 | false | false | false | false | false | false | zero |
44,105,671 | Android pay integration | <p>I want to integrate Android pay integration in my application, I got the source code from this repo: <a href="https://github.com/android-pay/androidpay-quickstart" rel="nofollow noreferrer">https://github.com/android-pay/androidpay-quickstart</a></p>
<p>My problem was:</p>
<pre><code><resources>
<string... | I want to integrate Android pay integration in my application, I got the source code from this repo: https://github.com/android-pay/androidpay-quickstart My problem was: [CODE] Where can I get stripe_publishable_key and stripe_version for testing mode Android Pay? | android|in-app-billing|android-pay | 0 | 2017-05-22T06:05:39.727Z | 2,017 | 5 | 6 | 0 | 332 | 1 | 264 | 23 | 3 | 1 | true | false | false | false | false | false | zero |
44,177,916 | Show polyline in android Google Maps exactly like Google Maps app in phone | <p>I am developing an app where I want to show polyline for multiple routes. I am able to draw polyline using directions API. But I want it look alike Google maps app in my phone. Is there any API or I have to customize polyline colors and options?</p> | I am developing an app where I want to show polyline for multiple routes. I am able to draw polyline using directions API. But I want it look alike Google maps app in my phone. Is there any API or I have to customize polyline colors and options? | android|google-maps|google-polyline | 0 | 2017-05-25T10:14:26.243Z | 2,017 | 5 | 10 | 3 | 332 | 1 | 245 | 74 | 3 | 0 | false | false | false | false | false | false | zero |
44,214,946 | send data from IntentService to Fragment | <p>As i tried BroadCastReciever in this <a href="https://stackoverflow.com/questions/44213949/broadcastreciver-passed-to-sharedpreference-value-not-updated-programticly">question</a>, I'v tried pass data with <strong>arguments</strong> too in my Log it's ok .</p>
<pre><code>Bundle bundle = new Bundle();
ArticleDetail... | As i tried BroadCastReciever in this question , I'v tried pass data with arguments too in my Log it's ok . [CODE] but i received null : [CODE] in my onCreateView() : [CODE] what is the best way to do that ? | android|android-fragments|android-service|android-bundle | 2 | 2017-05-27T09:01:53.077Z | 2,017 | 5 | 9 | 5 | 332 | 1 | 206 | 40 | 4 | 3 | true | false | false | false | false | false | low |
44,276,482 | JUNIT instrumentation test failing in android studio | <p>AGPBI: {"kind":"error","text":"indicate that it is <em>not</em> an inner class.","sources":[{}]}
AGPBI: {"kind":"error","text":"PARSE ERROR:","sources":[{}]}
AGPBI: {"kind":"error","text":"unsupported class file version 52.0","sources":[{}]}
AGPBI: {"kind":"error","text":"...while parsing com/thoughtworks/xstream/co... | AGPBI: {"kind":"error","text":"indicate that it is not an inner class.","sources":[{}]} AGPBI: {"kind":"error","text":"PARSE ERROR:","sources":[{}]} AGPBI: {"kind":"error","text":"unsupported class file version 52.0","sources":[{}]} AGPBI: {"kind":"error","text":"...while parsing com/thoughtworks/xstream/converters/ref... | java|android|android-studio|junit|instrumentation | 0 | 2017-05-31T05:37:50.873Z | 2,017 | 5 | 5 | 2 | 332 | 1 | 1,120 | 52 | 5 | 0 | false | false | false | false | false | false | zero |
44,111,178 | RenderScript - is it good practice to call Allocation.destroy() on every Allocation object created when you're done with it? | <p>I've been having problems with memory management while using RenderScript, so I figured that since <code>Allocation.createFromBitmap()/createTyped()</code> consumes memory, <code>Allocation.destroy()</code> frees the memory consumed by it.</p>
<p>Is it good practice to do so, and what else is good practice for Rend... | I've been having problems with memory management while using RenderScript, so I figured that since Allocation.createFromBitmap()/createTyped() consumes memory, Allocation.destroy() frees the memory consumed by it. Is it good practice to do so, and what else is good practice for RenderScript-based programs? | android|renderscript | 2 | 2017-05-22T11:00:07.840Z | 2,017 | 5 | 11 | 0 | 844 | 1 | 307 | 124 | 2 | 0 | false | false | false | false | false | false | low |
44,010,876 | Set Service to be called from button in Android | <p>I have these buttons that work:</p>
<pre><code>public void onClick(View v) {
if (v.getId() == R.id.buttonPlay) {
buttonStopPlay.setBackgroundResource(R.drawable.stopbutton);
buttonPlay.setBackgroundResource(R.drawable.playbuttonpressed);
Context context = getApplicationContext();
... | I have these buttons that work: [CODE] I want to set a simple service to keep startPlaying(); when app is minimized, so I did this: [CODE] However, service is not working. Is there something I did wrong? | java|android|service | 2 | 2017-05-16T20:21:14.867Z | 2,017 | 5 | 20 | 1 | 77 | 1 | 203 | 47 | 3 | 2 | true | false | false | false | false | false | low |
44,064,802 | PullToRefreshListView leaves space on top | <p>I am using PullToRefreshListView to provide data reload when pulling the listview.</p>
<p>But my problem is that after refreshing, the layout leaves a space on top of the listview. See the image below:
<a href="https://i.stack.imgur.com/KroHa.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/KroHa.... | I am using PullToRefreshListView to provide data reload when pulling the listview. But my problem is that after refreshing, the layout leaves a space on top of the listview. See the image below: I want to remove the space on top. I tried setting the view to View.GONE but it still leaves a small space in it. Here's the ... | java|android | 0 | 2017-05-19T08:13:41.113Z | 2,017 | 5 | 8 | 4 | 77 | 1 | 408 | 41 | 2 | 1 | true | false | false | false | false | false | zero |
44,083,618 | Volley Service doesn't enter callback | <p>I am trying to do http requests using the volley service, and i found a really usefull answer <a href="https://stackoverflow.com/questions/35628142/how-to-make-separate-class-for-volley-library-and-call-all-method-of-volley-from">here</a> about how to organize the service for diferent http requests, so you don't nee... | I am trying to do http requests using the volley service, and i found a really usefull answer here about how to organize the service for diferent http requests, so you don't need to do all that code for every request. The request works fine and i got the result i want, but it never enters de callback on the mainActivit... | java|android|http|android-volley | 0 | 2017-05-20T08:25:17.323Z | 2,017 | 5 | 8 | 5 | 77 | 1 | 446 | 37 | 4 | 2 | true | false | false | false | false | false | zero |
44,130,072 | VideoView Online Buffer android Rotate Handle | <p>show online video my problem is :
when <strong>rotate</strong> screen Video again from the beginning to <strong>buffer</strong> video</p>
<pre><code> @Override
protected void onSaveInstanceState(Bundle outState) {
outState.putInt("POSITION", myVideo.getCurrentPosition());
super.onSaveInstanceS... | show online video my problem is : when rotate screen Video again from the beginning to buffer video [CODE] | java|android|video-streaming|android-videoview|screen-orientation | 1 | 2017-05-23T08:50:53.057Z | 2,017 | 5 | 8 | 1 | 77 | 1 | 106 | 45 | 5 | 1 | true | false | false | false | false | false | low |
44,171,035 | ConcurrentModificationException on HashMap (NOT iterating through it) | <p>I'm getting a ConcurrentModificationException while trying to remove an entry from a HashMap and I can't figure out why. I'm <strong>not</strong> iterating through it, I'm simply checking if it contains a given key and deleting the value mapped to it if it does. I have read questions on this, but all of them are peo... | I'm getting a ConcurrentModificationException while trying to remove an entry from a HashMap and I can't figure out why. I'm not iterating through it, I'm simply checking if it contains a given key and deleting the value mapped to it if it does. I have read questions on this, but all of them are people trying to modify... | android|hashmap|concurrentmodification | 0 | 2017-05-25T01:49:48.617Z | 2,017 | 5 | 1 | 3 | 77 | 1 | 432 | 69 | 3 | 1 | true | false | false | false | false | false | zero |
44,210,766 | Use Floating Button in another xml | <p>I create a Floating Button in xml then I put it in another xml using include,and now I'm trying to do action in this floating Button but the project stop when I run it .. so I want to now how can I do action in specific button from another xml</p>
<p>action_bar xml:</p>
<pre><code><android.support.design.widget... | I create a Floating Button in xml then I put it in another xml using include,and now I'm trying to do action in this floating Button but the project stop when I run it .. so I want to now how can I do action in specific button from another xml action_bar xml: [CODE] I include the floating Button inside another XML: [CO... | android|xml|android-layout|button|action | 0 | 2017-05-26T22:10:55.217Z | 2,017 | 5 | 22 | 4 | 77 | 1 | 341 | 34 | 5 | 3 | true | false | false | false | false | false | zero |
44,354,820 | Android: How to show a graph for every minutes values | <p>I am making one application like share market. I want to show graph for every minutes changes in price for share. I tried time series line graph of MPAndroidChart. </p>
<p>But it is look like:
<a href="https://i.stack.imgur.com/oB3M0.png" rel="nofollow noreferrer">MPAndroidChare Line graph</a></p>
<p>But I want to... | I am making one application like share market. I want to show graph for every minutes changes in price for share. I tried time series line graph of MPAndroidChart. But it is look like: MPAndroidChare Line graph But I want to show data like: I want to show like this Which library should i use? | android|graph | 0 | 2017-06-04T13:54:57.233Z | 2,017 | 6 | 13 | 6 | 77 | 1 | 293 | 53 | 2 | 0 | false | false | false | false | false | false | zero |
43,971,620 | Location Status Inconsistent Android Studio | <p>I am trying to get the current location of user and show a marker on the MAP. Here is my code</p>
<pre><code>public class MapsActivity extends AppCompatActivity implements LocationListener, OnMapReadyCallback {
private GoogleMap mMap;
LocationManager locationManager;
String provider;
Location mLoca... | I am trying to get the current location of user and show a marker on the MAP. Here is my code [CODE] Now, the issue is that most of the times on I don't get any location, A map is shown without any marker and in the logs "Location Status:Location Not Found" which is set to be shown if location is null. I tried to rebui... | java|android|google-maps|google-maps-api-2 | 0 | 2017-05-15T04:32:54.067Z | 2,017 | 5 | 4 | 0 | 333 | 1 | 690 | 43 | 4 | 1 | true | false | false | false | false | false | zero |
44,138,171 | onEvent not detectig any event in my app | <p>I'm trying to keep a watch on Screenshot directory of my phone using <code>FileObserver</code>, I tried all events, the method <code>onEvent</code> id not getting called on any event. What i did is after installing the app, took one screenshot but the method didn't get called. Even tried to change the directory via ... | I'm trying to keep a watch on Screenshot directory of my phone using FileObserver , I tried all events, the method onEvent id not getting called on any event. What i did is after installing the app, took one screenshot but the method didn't get called. Even tried to change the directory via a file chooser and selected ... | java|android|fileobserver | 0 | 2017-05-23T14:50:02.833Z | 2,017 | 5 | 14 | 1 | 333 | 1 | 452 | 40 | 3 | 2 | true | false | false | false | false | false | zero |
44,222,665 | I want to keep TitleBar visible and stick at top instead of underneath a collapsing toolbar | <p>I have a AppBarLayout with CollapsingToolbar layout and ImageView in it. TitleBar appears when I ScrollUp. But I want to stick it at top and always visible. I have already tried by changing </p>
<pre><code>app:layout_collapseMode attribute.
</code></pre>
<p>Also tried </p>
<pre><code>app:layout_scrollFlags="scrol... | I have a AppBarLayout with CollapsingToolbar layout and ImageView in it. TitleBar appears when I ScrollUp. But I want to stick it at top and always visible. I have already tried by changing [CODE] Also tried [CODE] But didn't worked either. I have a code as follows: [CODE] | android|android-layout|layout | 0 | 2017-05-28T00:11:02.193Z | 2,017 | 5 | 0 | 6 | 333 | 1 | 273 | 91 | 3 | 3 | true | false | false | false | false | false | zero |
44,328,630 | Android - How to resume the last activity when launched icon is clicked or when back button is clicked | <p>I am working on a tracking application that use another third party application such as google map.</p>
<p>Lets assume my application has 4 activities ( act1, act2 , act3 and act4 ).</p>
<p>on act3 activity i am calling google map application to calculate the distance and view the routing. But once i clicked on th... | I am working on a tracking application that use another third party application such as google map. Lets assume my application has 4 activities ( act1, act2 , act3 and act4 ). on act3 activity i am calling google map application to calculate the distance and view the routing. But once i clicked on the back button of th... | java|android|android-fragments|android-activity|background-process | 0 | 2017-06-02T12:10:16.690Z | 2,017 | 6 | 12 | 4 | 333 | 1 | 674 | 102 | 5 | 0 | false | false | false | false | false | false | zero |
44,222,472 | Android Studio Radio Button not read as selected when selected | <p>I'm using an if statement to check which of two radio buttons in a radio group is selected but the app always thinks the second one is selected no matter what. I can't figure out why.</p>
<pre><code>@TargetApi(24)
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundl... | I'm using an if statement to check which of two radio buttons in a radio group is selected but the app always thinks the second one is selected no matter what. I can't figure out why. [CODE] Here is the XML file in case that helps: [CODE] | java|android-studio|android-radiobutton | 0 | 2017-05-27T23:28:49.770Z | 2,017 | 5 | 23 | 5 | 589 | 1 | 238 | 62 | 3 | 2 | true | false | false | false | false | false | zero |
44,313,718 | Upload multiple APKs to Play Store and localize them in different languages | <p>Is it possible to upload multiple APKs for the same app on the Google play store and localize them in different languages? So that if an English user downloads the app, he will download the APK compiled in English. Or if an Italian user downloads the app, he will download the APK compiled in Italian. And so on. Is i... | Is it possible to upload multiple APKs for the same app on the Google play store and localize them in different languages? So that if an English user downloads the app, he will download the APK compiled in English. Or if an Italian user downloads the app, he will download the APK compiled in Italian. And so on. Is it p... | android|localization|apk | 2 | 2017-06-01T17:27:34.070Z | 2,017 | 6 | 17 | 3 | 845 | 1 | 328 | 75 | 3 | 0 | false | false | false | false | false | false | low |
44,232,392 | How to control views wrapping in Android's GridLayout? | <p>I'm wondering why in portrait mode, this android xml is not rendered properly:</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="2... | I'm wondering why in portrait mode, this android xml is not rendered properly: [CODE] It should look like this: [CODE] I find it strange that this is working good in landscape mode, until I insert more text in the Switch or Text Views, so probably the problem is because the content is not wrapping, but as you can see I... | android|android-layout|xamarin.android | 0 | 2017-05-28T21:56:22.243Z | 2,017 | 5 | 21 | 6 | 1,101 | 1 | 572 | 54 | 3 | 2 | true | false | false | false | false | false | zero |
44,125,583 | Android Firebase linking multiple account providers with matching email | <p>In my firebase dashboard I have set <code>multiple accounts for one email</code> option.</p>
<p>I have simple email, Facebook and Google Plus authentication in my application.</p>
<p>I handle each of them like this in my LoginActivity:</p>
<p><strong>Google Plus:</strong></p>
<pre><code>private void firebaseAuth... | In my firebase dashboard I have set multiple accounts for one email option. I have simple email, Facebook and Google Plus authentication in my application. I handle each of them like this in my LoginActivity: Google Plus: [CODE] Facebook: [CODE] Simple Email: [CODE] Now I want to make users that has same emails for Fac... | android|facebook|firebase|google-api|firebase-authentication | 4 | 2017-05-23T03:59:42.677Z | 2,017 | 5 | 3 | 1 | 1,357 | 1 | 863 | 71 | 5 | 5 | true | false | false | false | false | false | low |
44,244,846 | Xamarin.Forms : on Android Firebase Remote Config not working | <p>My Android Firebase Remote Config not working ( on IOS it working well)</p>
<p>on MainActivity.OnCreate</p>
<pre><code>var mRemoteConfig = FirebaseRemoteConfig.Instance;
FirebaseRemoteConfigSettings configSettings = new FirebaseRemoteConfigSettings.Builder()
.SetDeveloperModeEnabled(true)
.Build();
mRemote... | My Android Firebase Remote Config not working ( on IOS it working well) on MainActivity.OnCreate [CODE] Here is output [CODE] | firebase|xamarin|xamarin.android|xamarin.forms|firebase-remote-config | 0 | 2017-05-29T14:24:41.393Z | 2,017 | 5 | 14 | 0 | 1,357 | 1 | 125 | 61 | 5 | 2 | true | false | false | false | false | false | zero |
44,076,511 | INSTALL_FAILED_UPDATE_INCOMPATIBLE when using same debug keystore as before | <p>We are finally migrating from Eclipse ADT to Android Studio 2.3.2 (yes, I know). </p>
<p>We used a custom debug keystore in Eclipse
<a href="https://i.stack.imgur.com/sAPRf.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/sAPRf.png" alt="Image of the custom debug keystore settings in Eclipse"></a... | We are finally migrating from Eclipse ADT to Android Studio 2.3.2 (yes, I know). We used a custom debug keystore in Eclipse I am attempting to use a debug keystore in Android Studio / gradle. I followed the straightforward directions here: Android Developer: App Signing All the Run configuration settings are defaults. ... | android|android-studio|android-keystore | 1 | 2017-05-19T18:14:53.207Z | 2,017 | 5 | 18 | 4 | 1,613 | 1 | 663 | 75 | 3 | 1 | true | false | false | false | false | false | low |
44,319,981 | using glide to show animated gif file with ImageView (android) | <p><a href="https://i.stack.imgur.com/2EVhB.gif" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/2EVhB.gif" alt="enter image description here"></a></p>
<p>I make gif Files animated then, I put this one in the Application's imageview.</p>
<pre><code>GlideDrawableImageViewTarget imageViewTarget = new Glid... | I make gif Files animated then, I put this one in the Application's imageview. [CODE] here's code and I have no problem with apply this one. But I have serious issue that The image have afterimage. I made this gif file with photoshop and It have 2 frame There's A frame and B frame. But at android app, A -> B -> A -> B ... | android | 3 | 2017-06-02T02:40:24.053Z | 2,017 | 6 | 2 | 4 | 2,125 | 1 | 399 | 62 | 1 | 1 | true | false | false | false | false | false | low |
44,176,636 | Trying to implement data binding in a Dialog in Android | <p>I am trying to implement data binding in my android application.
I have a Dialog as my login which sits over my main activity <a href="https://i.stack.imgur.com/WWerz.png" rel="nofollow noreferrer">something like this</a></p>
<p>this is my main activity</p>
<pre><code>public class MapsActivity extends FragmentActi... | I am trying to implement data binding in my android application. I have a Dialog as my login which sits over my main activity something like this this is my main activity [CODE] this is my model class [CODE] and this is my layout for the Dialog [CODE] the onClick() for the button does not to do anything I am trying to ... | android|mvvm|android-databinding|2-way-object-databinding | 4 | 2017-05-25T09:10:59.997Z | 2,017 | 5 | 9 | 3 | 5,965 | 1 | 378 | 55 | 4 | 3 | true | false | true | false | false | false | low |
43,944,581 | Test Activity started from Service | <p>Is it possible to test an Activity was started from an IntentService?</p>
<pre>
YourService svc = Robolectric.buildService(YourService.class).get();
Intent fakeIntent = new Intent();
svc.onHandleIntent(fakeIntent);
</pre>
<p>Service <code>onHandleIntent()</code> starts an activity.</p>
<p>How can we find and che... | Is it possible to test an Activity was started from an IntentService? [CODE] Service onHandleIntent() starts an activity. How can we find and check that activity? Notes Robolectric 3.1+ | android|robolectric | 1 | 2017-05-12T18:43:21.150Z | 2,017 | 5 | 18 | 4 | 78 | 1 | 185 | 34 | 2 | 1 | true | false | false | false | false | false | low |
43,986,210 | Which android OS versions support "Do Not Disturb" setting? | <p>I am developing an app which has a feature involving the "Do Not Disturb" setting in the device.</p>
<p>My question is, is it sufficient to allow this feature only on API >=23 based OS (6.0 and above), or should it be supported on older OS versions? Which OS version was this setting introduced?</p> | I am developing an app which has a feature involving the "Do Not Disturb" setting in the device. My question is, is it sufficient to allow this feature only on API >=23 based OS (6.0 and above), or should it be supported on older OS versions? Which OS version was this setting introduced? | android|android-version | 1 | 2017-05-15T18:12:53.753Z | 2,017 | 5 | 18 | 0 | 78 | 1 | 288 | 59 | 2 | 0 | false | false | false | false | false | false | low |
44,106,000 | How can I change the default home page url in an Android custom ROM? | <p>Hello I'm working in a custom ROM for Android. I would like to change the default home page url of the browsers like Chrome. Is there any file to change this?</p> | Hello I'm working in a custom ROM for Android. I would like to change the default home page url of the browsers like Chrome. Is there any file to change this? | android|rom|custom-rom | 0 | 2017-05-22T06:29:33.950Z | 2,017 | 5 | 6 | 0 | 78 | 1 | 158 | 68 | 3 | 0 | false | false | false | false | false | false | zero |
44,111,686 | Android Manifest application:supportsRtl | <p>I write a testcase with robotium but I face a problem that is : how to check in AndroidManifest.xml
1- if the attribute "supportsRtl" is already exist</p>
<p>2- if its value is true</p>
<pre><code><application
android:name=".MApplication"
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:... | I write a testcase with robotium but I face a problem that is : how to check in AndroidManifest.xml 1- if the attribute "supportsRtl" is already exist 2- if its value is true [CODE] | android|localization|android-manifest | 0 | 2017-05-22T11:26:53.637Z | 2,017 | 5 | 11 | 0 | 78 | 1 | 181 | 40 | 3 | 1 | true | false | false | false | false | false | zero |
44,112,166 | When I click the Home button on the android I want it to save the frame AS3 | <p>This is for the game i am doing
When I click the Home button on the android I want it to save the frame it was in and not start the game loads where it was </p>
<p>This results in saving the game forever but I just want it to save once and the code to load does not work </p>
<pre><code> import flash.net.Shar... | This is for the game i am doing When I click the Home button on the android I want it to save the frame it was in and not start the game loads where it was This results in saving the game forever but I just want it to save once and the code to load does not work [CODE] thanks for help | android|actionscript-3 | 1 | 2017-05-22T11:52:07.807Z | 2,017 | 5 | 11 | 0 | 78 | 1 | 285 | 75 | 2 | 1 | true | false | false | false | false | false | low |
44,145,051 | Preserve an argument after a series of concat operators RxJava | <p>Is it possible to access the first argument of the operators down the line? I'm trying to preserve the value using the zip operator but I haven't managed to do it. Thanks for the help</p>
<pre><code>.concatMap(this::getDeviceStatus)
.concatMap(this::getCertificateResponse)
.concatMap... | Is it possible to access the first argument of the operators down the line? I'm trying to preserve the value using the zip operator but I haven't managed to do it. Thanks for the help [CODE] | android|rx-java|rx-java2 | 0 | 2017-05-23T21:07:44.003Z | 2,017 | 5 | 21 | 1 | 78 | 1 | 190 | 62 | 3 | 1 | true | false | false | false | false | false | zero |
44,275,606 | How to set openRawResourceId value in Android? | <p>I have raw folder and inside that I have added 3 <code>mp3</code> files. And am retrieving the file name like this:</p>
<pre><code>Field[] fields=R.raw.class.getFields();
for(int count=0; count < fields.length; count++){
Log.e("RawName: ", fields[count].getName());
}
String resid=fields[0].getName();
</code>... | I have raw folder and inside that I have added 3 mp3 files. And am retrieving the file name like this: [CODE] I just need only 0th position file. Now I have set the value like this, [CODE] My question is how can I set the value resid in to that "R.raw.test". | android|android-resources | 0 | 2017-05-31T04:22:57.147Z | 2,017 | 5 | 4 | 2 | 78 | 1 | 258 | 46 | 2 | 2 | true | false | false | false | false | false | zero |
44,322,238 | Show checkbox checked when dialog reopens | <p>I have a dialog box in which I have a listView of checkbox and textview. I have displayed stName Arraylist in textView. Now what I want is after selecting the checkboxes when I reopen the dialog it should show checboxes checked. </p>
<pre><code>public class StudentNameAdapter extends ArrayAdapter{
Context cont... | I have a dialog box in which I have a listView of checkbox and textview. I have displayed stName Arraylist in textView. Now what I want is after selecting the checkboxes when I reopen the dialog it should show checboxes checked. [CODE] | android | -1 | 2017-06-02T06:28:57.030Z | 2,017 | 6 | 6 | 4 | 78 | 1 | 235 | 41 | 1 | 1 | true | false | false | false | false | true | negative |
44,180,209 | Compile Errors when building a Unity PC Standalone project with the Tango SDK imported | <p>Afternoon folks,</p>
<p>(I've searched around a fair bit for an answer to this issue, but it seems that it's either a rare scenario, or my google-fu is not up to par. Apologies if the answer is obvious and in another thread, if you could direct me, and I'd be on my way.)</p>
<p>The Problem:</p>
<p>It appears that... | Afternoon folks, (I've searched around a fair bit for an answer to this issue, but it seems that it's either a rare scenario, or my google-fu is not up to par. Apologies if the answer is obvious and in another thread, if you could direct me, and I'd be on my way.) The Problem: It appears that it's impossible to build a... | c#|android|unity3d|google-project-tango | 0 | 2017-05-25T12:07:11.723Z | 2,017 | 5 | 12 | 3 | 590 | 1 | 2,548 | 86 | 4 | 3 | true | false | false | false | false | false | zero |
44,250,824 | Unity Speech to text with Azure | <p>I want to implement Speech-to-text functionality using Azure on a Unity project that will be deployed to Android.
I have tried this example:
<a href="https://docs.microsoft.com/en-us/azure/cognitive-services/speech/getstarted/getstartedcsharpdesktop" rel="nofollow noreferrer">https://docs.microsoft.com/en-us/azure/c... | I want to implement Speech-to-text functionality using Azure on a Unity project that will be deployed to Android. I have tried this example: https://docs.microsoft.com/en-us/azure/cognitive-services/speech/getstarted/getstartedcsharpdesktop But Im not sure how Im supposed to implement this in my Unity project. Can anyo... | android|azure|unity3d | 0 | 2017-05-29T22:08:50.760Z | 2,017 | 5 | 22 | 0 | 846 | 1 | 355 | 31 | 3 | 0 | false | false | false | false | false | false | zero |
44,006,579 | IndoorAtlas : How many times is sufficient/necessary for mapping coverage in the same path? | <p>I have a question and problem in mapping data coverage - <strong>How many times is sufficient or necessary for mapping coverage in the same path ?</strong>
for example, if I have 2 waypoint distance by 10m. assume A and B. Is it necessary to repeat collecting data in the same path as A->B ,B->A in many time.
Mappin... | I have a question and problem in mapping data coverage - How many times is sufficient or necessary for mapping coverage in the same path ? for example, if I have 2 waypoint distance by 10m. assume A and B. Is it necessary to repeat collecting data in the same path as A->B ,B->A in many time. Mapping coverage, this depe... | android|indoor-positioning-system | 0 | 2017-05-16T16:13:16.793Z | 2,017 | 5 | 16 | 1 | 79 | 1 | 395 | 91 | 2 | 0 | false | false | false | false | false | false | zero |
44,095,672 | How to show facebook photo gallery in my app? | <p>Is there a way for me to pull Facebook photo album and display it in my app ? I mean <strong>with the UI Interface to select the photo</strong>, not only to retrieve the url of the photos (via graph api I guess) and later build our-self the ui interface (ie: the gallery) to let the user select the photo. </p>
<p>Is... | Is there a way for me to pull Facebook photo album and display it in my app ? I mean with the UI Interface to select the photo , not only to retrieve the url of the photos (via graph api I guess) and later build our-self the ui interface (ie: the gallery) to let the user select the photo. Is their something like this i... | android|facebook|facebook-graph-api|facebook-android-sdk|facebook-sdk-4.0 | -1 | 2017-05-21T10:18:51.680Z | 2,017 | 5 | 10 | 6 | 79 | 1 | 356 | 45 | 5 | 0 | false | false | false | false | false | true | negative |
44,322,728 | Seg fault on Android Cocos2D-x app in lambda callback | <p>I've got a weird crash issue in the Android version of a Cocos2D-X game.</p>
<p>In many places I have callbacks that execute when some other action is completed, invoked like this:</p>
<pre><code>playAnimationOnce(animationName, [this] {
m_animationStateMachine->changeState(TWITCHING_ANIM_STATE);
m_stat... | I've got a weird crash issue in the Android version of a Cocos2D-X game. In many places I have callbacks that execute when some other action is completed, invoked like this: [CODE] On Android, m_animationStateMachine is able to change state just fine, however, making any reference to m_stateMachine is causing a crash, ... | android|c++|lambda|segmentation-fault|cocos2d-x | 0 | 2017-06-02T07:01:16.127Z | 2,017 | 6 | 7 | 4 | 79 | 1 | 916 | 53 | 5 | 2 | true | false | false | false | false | false | zero |
44,006,401 | How to draw a circle in front of a textview with canvas in android | <p>I made a code where a circle moves around, but whenever it moves in front of a textview, the textview gets in front of him and I want him to be in front of the textview.
I tried drawing the circle after making the textview but it doesn't fix it.
Example:</p>
<pre><code>public MainView(Context context) {
super(c... | I made a code where a circle moves around, but whenever it moves in front of a textview, the textview gets in front of him and I want him to be in front of the textview. I tried drawing the circle after making the textview but it doesn't fix it. Example: [CODE] | android|canvas|view|textview|draw | 0 | 2017-05-16T16:04:38.063Z | 2,017 | 5 | 16 | 1 | 335 | 1 | 261 | 66 | 5 | 1 | true | false | false | false | false | false | zero |
44,048,395 | ViewPager setCurrentItem(position) not working after orientation change | <p>i'm facing an issue i can't seem to resolve and i'd like some help.</p>
<p>My app is composed by an activity containing a fragment. After the user taps on a suggestion, activity's method onSuggestionClicked(String cardId) is called and activity's content is replaced with a new <em>PagerFragment_new</em>.</p>
<pre>... | i'm facing an issue i can't seem to resolve and i'd like some help. My app is composed by an activity containing a fragment. After the user taps on a suggestion, activity's method onSuggestionClicked(String cardId) is called and activity's content is replaced with a new PagerFragment_new . [CODE] PagerFragment_new cont... | java|android|android-viewpager|onclicklistener|android-configchanges | 0 | 2017-05-18T12:55:51.580Z | 2,017 | 5 | 12 | 3 | 591 | 1 | 1,236 | 71 | 5 | 5 | true | false | false | false | false | false | zero |
44,334,248 | How could I add parameters 'LOCAL_C_INCLUDES' of Android.mk file to my Android studio NDK application? | <p>I was converting android-ndk-command-line applications to Android Studio's applications in this book.<a href="https://i.stack.imgur.com/o1mb5.png" rel="nofollow noreferrer">enter image description here</a></p>
<p>But I couldn't find any other code as well as 'LOCAL_C_INCLUDES' parameters in Android.mk file.<a href=... | I was converting android-ndk-command-line applications to Android Studio's applications in this book. enter image description here But I couldn't find any other code as well as 'LOCAL_C_INCLUDES' parameters in Android.mk file. enter image description here So, I could not change directory paths. How can I add useful pat... | android-studio|path|android-ndk | 0 | 2017-06-02T17:15:17.770Z | 2,017 | 6 | 17 | 4 | 591 | 1 | 341 | 102 | 3 | 0 | false | false | false | false | false | false | zero |
44,144,518 | How to query for all sms messages by a specific user when you have the contact ID | <p>How do you retrieve all the sms messages from a specific contact?</p>
<p>I seen ways to retrieve all sms messages and then filter down to the person in particular. But I want to query using the contact id/phone number.</p>
<p>I'm querying the contact using <code>ContactsContract.CommonDataKinds.Phone.NUMBER</code>... | How do you retrieve all the sms messages from a specific contact? I seen ways to retrieve all sms messages and then filter down to the person in particular. But I want to query using the contact id/phone number. I'm querying the contact using ContactsContract.CommonDataKinds.Phone.NUMBER . But that string doesn't seem ... | android|sms|telephony|contactscontract | 0 | 2017-05-23T20:35:20.167Z | 2,017 | 5 | 20 | 1 | 847 | 1 | 563 | 81 | 4 | 0 | false | false | false | false | false | false | zero |
43,972,699 | How to transfer the App with the data(obb) from Nexus 5 to Emulator? | <p>Device: Nexus 5 (d821) with Android version: 6.0.1 (no root!)</p>
<p>Androind Emulator on Windows 10: Nox App Player emulator</p>
<p>On the Nexus 5 is an App with data. App is a game from the market that does not support authorization, that is, game account data store on the device.</p>
<p>How do I transfer the A... | Device: Nexus 5 (d821) with Android version: 6.0.1 (no root!) Androind Emulator on Windows 10: Nox App Player emulator On the Nexus 5 is an App with data. App is a game from the market that does not support authorization, that is, game account data store on the device. How do I transfer the App together with the data i... | android|google-play|google-play-services|apk | 0 | 2017-05-15T06:23:48.950Z | 2,017 | 5 | 6 | 0 | 1,103 | 1 | 447 | 68 | 4 | 0 | false | false | false | false | false | false | zero |
44,210,767 | How to align / display on the left of the screen a materializecss floating button? | <p>I am using materializecss. I have a floating button, and it is working fine, it displays on the bottom right hand side, code below:</p>
<pre><code><div class="fixed-action-btn click-to-toggle">
<a class="btn-floating btn-large yellow accent-3"><i class="material-icons">menu</i></a>
<... | I am using materializecss. I have a floating button, and it is working fine, it displays on the bottom right hand side, code below: [CODE] I would like to have the button aligned on the left. On the same height from the bottom, but instead of on the right, on the left hand side of the screen. I already tried changing: ... | android|html|css|materialize | 0 | 2017-05-26T22:11:03.120Z | 2,017 | 5 | 22 | 4 | 1,103 | 1 | 467 | 82 | 4 | 4 | true | false | false | false | false | false | zero |
44,034,689 | W/com.mapbox.mapboxsdk.http.HTTPRequest: Request failed due to a permanent error | <p>I have created a map using this tutorial: <a href="https://developer.mapquest.com/documentation/android-sdk/" rel="nofollow noreferrer">https://developer.mapquest.com/documentation/android-sdk/</a>
It was running good since 2 months ago, now I get the error:</p>
<blockquote>
<p>W/com.mapbox.mapboxsdk.http.HTTPReq... | I have created a map using this tutorial: https://developer.mapquest.com/documentation/android-sdk/ It was running good since 2 months ago, now I get the error: W/com.mapbox.mapboxsdk.http.HTTPRequest: Request failed due to a permanent error | android|mapbox|mapquest | 0 | 2017-05-17T21:00:29.580Z | 2,017 | 5 | 21 | 2 | 1,359 | 1 | 241 | 80 | 3 | 0 | false | false | false | false | false | false | zero |
44,218,993 | Linked CSS not showing on mobile | <p>I'm not sure if this is a problem that needs a coding solution or just a theory explanation, but here goes...</p>
<p>I have an HTML file linking several stylesheets + fonts:</p>
<pre><code><head>
<meta charset="UTF-8">
<title>T6</title>
<meta name="viewport" content="width=device-width... | I'm not sure if this is a problem that needs a coding solution or just a theory explanation, but here goes... I have an HTML file linking several stylesheets + fonts: [CODE] CSS files are in the same folder as index.html (on Dropbox). They appear fine on Chrome and Edge on my desktop, as well as the device simulation o... | android|html|css|google-chrome|mobile-website | 0 | 2017-05-27T16:08:40.127Z | 2,017 | 5 | 16 | 5 | 1,359 | 1 | 1,506 | 32 | 5 | 1 | true | false | false | false | false | false | zero |
44,013,526 | TextInputLayout and AutoCompleteTextView background looks fine in preview, but on device it is always white | <p>To keep it as short as possible.</p>
<p>This is my style for TextInputLayout</p>
<pre><code><style name="TextLabel" parent="Widget.AppCompat.AutoCompleteTextView">
<!-- Hint color and label color in FALSE state -->
<item name="android:textColorHint">@color/pure_white</item>
<... | To keep it as short as possible. This is my style for TextInputLayout [CODE] And this is the implementation in the layout [CODE] And this is what I get on the device (both physical and emulated): But this is what I actually want and Android Studio preview actually shows it correctly, it just won't compile this way: Any... | android|android-layout|autocompletetextview|android-textinputlayout | 0 | 2017-05-17T00:13:47.450Z | 2,017 | 5 | 0 | 2 | 1,615 | 1 | 472 | 107 | 4 | 2 | true | false | false | false | false | false | zero |
44,343,448 | Decoding ble hci snoop logs in Android | <p>I am debugging an android disconnection issue and have gathered bluetooth hci snoop logs and have browsed it via wireshark tool but i am not able to understand the datapackets being shown in the logs. Is there any official /non official documentation for understanding these hci snoop logs?</p> | I am debugging an android disconnection issue and have gathered bluetooth hci snoop logs and have browsed it via wireshark tool but i am not able to understand the datapackets being shown in the logs. Is there any official /non official documentation for understanding these hci snoop logs? | bluetooth|bluetooth-lowenergy|android-bluetooth | 0 | 2017-06-03T11:32:47.513Z | 2,017 | 6 | 11 | 5 | 1,615 | 1 | 290 | 38 | 3 | 0 | false | false | false | false | false | false | zero |
44,239,493 | Showing progress bar while loading Firebase database | <p>I am using Firebase realtime database in my app. I have listView and adapter that each view of the adapter load one item from the Firebase database. But it takes few seconds to load all of the data (each item has image and name). So I want to show progress bar or something to show to the user, but I don't know where... | I am using Firebase realtime database in my app. I have listView and adapter that each view of the adapter load one item from the Firebase database. But it takes few seconds to load all of the data (each item has image and name). So I want to show progress bar or something to show to the user, but I don't know where to... | android|firebase|firebase-realtime-database|android-progressbar | 0 | 2017-05-29T09:52:44.313Z | 2,017 | 5 | 9 | 0 | 3,151 | 1 | 695 | 52 | 4 | 0 | false | false | true | false | false | false | zero |
43,961,345 | How to change background color of option menu on android without other changing? | <p>My app's theme is <code>Theme.AppCompat.Light.DarkActionBar</code>. To change background color of option menu, I inserted this code <code><item name="android:itemBackground">@color/darkblue</item></code> in style.xml. This code worked well, however, some changes that I don't want, were added. Option menu... | My app's theme is Theme.AppCompat.Light.DarkActionBar . To change background color of option menu, I inserted this code <item name="android:itemBackground">@color/darkblue</item> in style.xml. This code worked well, however, some changes that I don't want, were added. Option menu panel's corner turned into be angular f... | android|background-color|android-theme | 0 | 2017-05-14T07:17:10.287Z | 2,017 | 5 | 7 | 6 | 8,271 | 1 | 432 | 80 | 3 | 0 | false | false | true | false | false | false | zero |
44,230,360 | Displaying Google Map within service using window manager system service | <p>In my app I need to be able to display google map as overlay up on other applications.</p>
<p>For doing so I am using service and window manager to show google map view as TYPE_SYSTEM_ALERT .</p>
<p>I am already able to the display the map twice inside the activity using 2 different google API clients with same va... | In my app I need to be able to display google map as overlay up on other applications. For doing so I am using service and window manager to show google map view as TYPE_SYSTEM_ALERT . I am already able to the display the map twice inside the activity using 2 different google API clients with same valid API key. I can'... | android|google-maps|service|window-managers | 0 | 2017-05-28T17:57:39.857Z | 2,017 | 5 | 17 | 6 | 80 | 1 | 816 | 72 | 4 | 0 | false | false | false | false | false | false | zero |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.