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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
72,885,022 | Kill Background Job on Active App State React Native | <p>I am having problems stopping a background action running in my android app. Basically, the way I am using it in this way:
1- I use an <code>appState</code> hook that lets me know when the app is in <strong>foreground</strong> or <strong>background</strong>.
2- When the <code>appState</code> Turns to <strong>'backgr... | I am having problems stopping a background action running in my android app. Basically, the way I am using it in this way: 1- I use an appState hook that lets me know when the app is in foreground or background . 2- When the appState Turns to 'background' I start a background job using BackgroundJob.start() from 'react... | android|react-native|speech-recognition|background-process | 0 | 2022-07-06T14:08:11.720Z | 2,022 | 7 | 14 | 2 | 61 | 1 | 988 | 52 | 4 | 1 | true | false | false | false | false | false | zero |
72,885,097 | Keep the button aligned to bottom of the dialog | <p>I've a layout like <strong>design 1</strong> and I want to align cancel button to bottom of the dialog always. recyclerview1 & recyclerview2 have different heights due to display content. if the both recyclerview1 and recyclerview content are small and able to display within screen without scroll it should be li... | I've a layout like design 1 and I want to align cancel button to bottom of the dialog always. recyclerview1 & recyclerview2 have different heights due to display content. if the both recyclerview1 and recyclerview content are small and able to display within screen without scroll it should be like design 2 . If the rec... | android|xml|android-studio|android-layout | 0 | 2022-07-06T14:12:52.420Z | 2,022 | 7 | 14 | 2 | 37 | 1 | 505 | 47 | 4 | 1 | true | false | false | false | false | false | zero |
72,885,154 | Android BackgroundColorSpan breaking with lineSpacing less than 1 | <p>I have got a <code>textView</code> to which I do this:</p>
<p><code>textView.setLineSpacing(1f, .70f);</code></p>
<p>and then I would like to set a background color only to specific words in that <code>textView</code> so I've tried this:</p>
<p><code>spannableStringBuilder.setSpan(new BackgroundColorSpan(bckgndColor... | I have got a textView to which I do this: textView.setLineSpacing(1f, .70f); and then I would like to set a background color only to specific words in that textView so I've tried this: spannableStringBuilder.setSpan(new BackgroundColorSpan(bckgndColor), spanStart, spanEnd, 0); The problem is that because of the lineSpa... | android|android-spannable | 0 | 2022-07-06T14:16:53.103Z | 2,022 | 7 | 14 | 2 | 62 | 1 | 774 | 65 | 2 | 1 | true | false | false | false | false | false | zero |
72,885,226 | Android Jetpack compose with carousel layout | <p>I am trying to develop carousel UI that starts in the middle of the screen at the bottom and when we click on next item it automatically come in the middle. I am using <code>LazyRow</code> and using <code>Layout</code> with <code>measurePolicy</code>.</p>
<pre><code> Layout(
content = { itemCont... | I am trying to develop carousel UI that starts in the middle of the screen at the bottom and when we click on next item it automatically come in the middle. I am using LazyRow and using Layout with measurePolicy . [CODE] This is working for first element but clicking on next element, the selected element go to the star... | android|android-jetpack-compose|android-jetpack | 1 | 2022-07-06T14:21:40.393Z | 2,022 | 7 | 14 | 2 | 172 | 0 | 372 | 44 | 3 | 1 | true | true | false | false | false | false | low |
72,885,231 | flutter build ios command is always stucked at └─Compiling, linking and signing... ⣯ | <pre><code>Running pod install... 2,087ms
Running Xcode build...
└─Compiling, linking and signing... ⣻
</code></pre>
<p>flutter build ios command is always stuck at └─Compiling, linking, and signing..... | [CODE] flutter build ios command is always stuck at └─Compiling, linking, and signing... ⣯ | android|ios|swift|flutter|firebase | 1 | 2022-07-06T14:21:43.123Z | 2,022 | 7 | 14 | 2 | 191 | 2 | 90 | 84 | 5 | 1 | true | false | false | false | false | false | low |
72,885,346 | How I get privacy policy for my app on play store? | <p>recently Play Store ordered that all apps should have a privacy policy. I really don't know how to do it and if I really must do it, because my apps don't collect any data from user (no name, no location or ...). Can someone help me how to proceed? Thanks in advance.</p> | recently Play Store ordered that all apps should have a privacy policy. I really don't know how to do it and if I really must do it, because my apps don't collect any data from user (no name, no location or ...). Can someone help me how to proceed? Thanks in advance. | android|google-play|privacy-policy | 0 | 2022-07-06T14:29:00.950Z | 2,022 | 7 | 14 | 2 | 61 | 2 | 267 | 50 | 3 | 0 | false | false | false | false | false | false | zero |
72,885,438 | How can I use an enum with a switch case in Java? | <p>Previously, I was saving the keys inside <code>SharedPreferencesManager</code> class using this way</p>
<pre><code>public static final int KEY_COUNTRY_ID = 5,
KEY_COUNTRY_NAME = 10,
KEY_CURRENCY_ID = 15,
KEY_CURRENCY_NAME = 20;
</code></pre>
<p>I decided to use an enum to store the keys because I thin... | Previously, I was saving the keys inside SharedPreferencesManager class using this way [CODE] I decided to use an enum to store the keys because I think it is a better way than the old way, Here is what I tried. SharedPreferencesManager.java [CODE] The error [CODE] The red lines under case Keys.COUNTRY_ID.name(): and c... | java|android|enums|switch-statement | 0 | 2022-07-06T14:36:13.910Z | 2,022 | 7 | 14 | 2 | 36 | 1 | 377 | 49 | 4 | 3 | true | false | false | false | false | false | zero |
72,885,474 | Getting empty users list from viewModel class | <p>I am trying get users list from Firebase. I use repository and viewmodel. I am newcomer in the clean architecture and I think, that I made error , when have made viewModel method.</p>
<pre><code>`class UserRepository {
private var usersList: ArrayList<User>? = ArrayList()
fun readUsers(): ArrayList<User>... | I am trying get users list from Firebase. I use repository and viewmodel. I am newcomer in the clean architecture and I think, that I made error , when have made viewModel method. [CODE] }` when I am debugging I see that usrlist is not empty [CODE] and in fragment I call: [CODE] I dont understand, why firstly calls ini... | android|firebase|viewmodel|android-livedata | 0 | 2022-07-06T14:38:12.120Z | 2,022 | 7 | 14 | 2 | 20 | 0 | 496 | 45 | 4 | 3 | true | true | false | false | false | false | zero |
72,885,506 | Back button between 3 activities | <p>I got MainActivity / ActivityA / ActivityB. So I need back button works the following way. When I click on back button in ActivityB I need to land on ActivityA. When I click on back button in ActivityA I need to land on MainActivity.</p>
<p>Now the issue is when I use <code>finish()</code> in ActivityB I am landing ... | I got MainActivity / ActivityA / ActivityB. So I need back button works the following way. When I click on back button in ActivityB I need to land on ActivityA. When I click on back button in ActivityA I need to land on MainActivity. Now the issue is when I use finish() in ActivityB I am landing on the MainActivity. Bu... | android|android-navigation | 0 | 2022-07-06T14:40:24.600Z | 2,022 | 7 | 14 | 2 | 25 | 0 | 560 | 32 | 2 | 3 | true | true | false | false | false | false | zero |
72,885,528 | Pass data from RecyclerView to another in fragment | <p>i want to pass data from recyclerview to another both in fragment, first adapter
for display item, and second adapter for basket fragment that want to put selected item in.</p>
<p>Adapter I want to take data from</p>
<pre><code>public class FruitItemAdapter extends RecyclerView.Adapter<FruitItemAdapter.viewHolder... | i want to pass data from recyclerview to another both in fragment, first adapter for display item, and second adapter for basket fragment that want to put selected item in. Adapter I want to take data from [CODE] this is adapter for basket fragment that I want to put the data in [CODE] Now, what i can use to pass data ... | java|android|android-recyclerview|fragment|transfer | 0 | 2022-07-06T14:41:37.473Z | 2,022 | 7 | 14 | 2 | 69 | 1 | 333 | 50 | 5 | 2 | true | false | false | false | false | false | zero |
72,885,533 | Codemagic: build failed for task ':app:signReleaseBundle' with 'Algorithm HmacPBESHA256 not available' | <p>When I try to build <strong>Flutter</strong> app for Android <strong>release</strong>, I get the following error:</p>
<pre><code>FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':app:signReleaseBundle'.
> A failure occurred while executing com.android.build.gradle.internal.t... | When I try to build Flutter app for Android release , I get the following error: [CODE] | android-gradle-plugin|codemagic | 0 | 2022-07-06T14:42:00.663Z | 2,022 | 7 | 14 | 2 | 71 | 0 | 87 | 102 | 2 | 1 | true | true | false | false | false | false | zero |
72,885,577 | How to implement okhttp 5.0.0 in react native module | <p>I need to use the alpha-staged Java OkHttp library for a login method. It has the Happy Eyeballs (RFC 6555) Algorithm implemented, which improves loading times on requests between IPv6 and IPv4.</p>
<p>OkHttp (Version 5.0.0-alpha-5) supports a fastFallback method, which implements this feature. This is why I am eage... | I need to use the alpha-staged Java OkHttp library for a login method. It has the Happy Eyeballs (RFC 6555) Algorithm implemented, which improves loading times on requests between IPv6 and IPv4. OkHttp (Version 5.0.0-alpha-5) supports a fastFallback method, which implements this feature. This is why I am eager to use t... | java|android|react-native|okhttp|react-native-modules | 0 | 2022-07-06T14:45:09.587Z | 2,022 | 7 | 14 | 2 | 174 | 1 | 733 | 52 | 5 | 2 | true | false | false | false | false | false | zero |
72,885,746 | Problem with ItemTouchHelper and ConcatAdapter | <p>I have 2 adapters and I'm trying to implement a Swipe to delete it. I did a ConcatAdapter because I have a lot of sections and it made it easy.</p>
<p>But, when I try to Swipe some item, <em><strong>viewHolder.absoluteAdapterPosition</strong></em> gives me the "wrong" position, making it impossible to find... | I have 2 adapters and I'm trying to implement a Swipe to delete it. I did a ConcatAdapter because I have a lot of sections and it made it easy. But, when I try to Swipe some item, viewHolder.absoluteAdapterPosition gives me the "wrong" position, making it impossible to find the item to delete. Example: Adapte... | android|itemtouchhelper|android-concatadapter | 0 | 2022-07-06T14:56:18Z | -1 | -1 | -1 | -1 | 37 | 0 | 577 | 46 | 3 | 0 | false | true | false | false | false | false | zero |
72,885,795 | How do I build an old android studio project | <p>I'm trying to to build <a href="https://github.com/ma1co/PMCADemo" rel="nofollow noreferrer">this project</a> which uses gradle version 2.3.3. What changes do I need to make in order to get it running</p> | I'm trying to to build this project which uses gradle version 2.3.3. What changes do I need to make in order to get it running | android-studio|gradle | 0 | 2022-07-06T14:58:55.320Z | 2,022 | 7 | 14 | 2 | 18 | 0 | 126 | 44 | 2 | 0 | false | true | false | false | false | false | zero |
72,885,883 | Xamarin Android Distribution | <p>I have run into an issue with distributing my Android app to google play, I have no idea why its happened, but all of the sudden I am no longer able to select "Google play" when choosing distribute, instead I can only select "Ad Hoc"</p>
<p>I am unsure whether this means I need to create a new AP... | I have run into an issue with distributing my Android app to google play, I have no idea why its happened, but all of the sudden I am no longer able to select "Google play" when choosing distribute, instead I can only select "Ad Hoc" I am unsure whether this means I need to create a new APK file and... | c#|xamarin|xamarin.forms|xamarin.android | 1 | 2022-07-06T15:05:30.793Z | 2,022 | 7 | 15 | 2 | 107 | 1 | 1,694 | 28 | 4 | 0 | false | false | false | false | false | false | low |
72,885,913 | Controlling network connectivity on Android | <p>I am making a sample app, only to see, how to monitor the network connectivity on Android.</p>
<p>For that I follow this document:
<a href="https://developer.android.com/training/monitoring-device-state/connectivity-status-type" rel="nofollow noreferrer">https://developer.android.com/training/monitoring-device-state... | I am making a sample app, only to see, how to monitor the network connectivity on Android. For that I follow this document: https://developer.android.com/training/monitoring-device-state/connectivity-status-type Since I am not getting the results I expected, I decided to create this post hoping to get some relevant fee... | android|kotlin|network-programming|android-connectivitymanager | 0 | 2022-07-06T15:07:26.490Z | 2,022 | 7 | 15 | 2 | 64 | 1 | 1,379 | 43 | 4 | 2 | true | false | false | false | false | false | zero |
72,885,933 | AS400 DB2 IBM Connection Xamarin C# | <p>I'm new to this topic so I wish someone could help me, I need to create a connection in C# to IBM's AS400 DB2, I really don't have much experience in this programming language and I need to create the connection for an android application in Xamarin.
Thank you</p> | I'm new to this topic so I wish someone could help me, I need to create a connection in C# to IBM's AS400 DB2, I really don't have much experience in this programming language and I need to create the connection for an android application in Xamarin. Thank you | c#|android|xamarin|database-connection|ibm-midrange | 0 | 2022-07-06T15:08:49.203Z | 2,022 | 7 | 15 | 2 | 55 | 0 | 260 | 35 | 5 | 0 | false | true | false | false | false | false | zero |
72,885,959 | value of current speed freeze when the app is minimized | <p>I am working on a simple app to get the speed of the device to use it to calculate the speed of the car.
I have a variable where I store the value of current speed and I have a problem when the app is minimized this value freeze and doesn't change and I want to change whether the is app is minimized or not,</p>
<p>I... | I am working on a simple app to get the speed of the device to use it to calculate the speed of the car. I have a variable where I store the value of current speed and I have a problem when the app is minimized this value freeze and doesn't change and I want to change whether the is app is minimized or not, I tried add... | android|location | 1 | 2022-07-06T15:10:26.550Z | 2,022 | 7 | 15 | 2 | 22 | 0 | 443 | 55 | 2 | 2 | true | true | false | false | false | false | low |
72,886,062 | OutlinedTextField doesn't resize to a minimumWidth in Compose | <p>I'm trying to make an OutlinedTextField (see below image) act as "wrap-content". It would be ideal for it to be just big enough to fit the inside text <code>500g</code> and expand and contract if user edits the field.
If I remember correctly this was possible to do with the old views with the (non-Compose)... | I'm trying to make an OutlinedTextField (see below image) act as "wrap-content". It would be ideal for it to be just big enough to fit the inside text 500g and expand and contract if user edits the field. If I remember correctly this was possible to do with the old views with the (non-Compose) ConstraintLayou... | android|android-jetpack-compose | 4 | 2022-07-06T15:17:16.927Z | 2,022 | 7 | 15 | 2 | 191 | 1 | 650 | 61 | 2 | 1 | true | false | false | false | false | false | low |
72,886,174 | Execution failed for task ':react-native-reanimated:compileDebugJavaWithJavac' | <p>Although this question has been asked by others, none of the provided solutions work for my use case.</p>
<h3>Environment</h3>
<pre><code>System:
OS: macOS 12.3.1
CPU: (10) arm64 Apple M1 Pro
Memory: 202.25 MB / 32.00 GB
Shell: 5.8 - /bin/zsh
Binaries:
Node: 16.1.0 - ~/.nvm/versions/node/v16.1.... | Although this question has been asked by others, none of the provided solutions work for my use case. Environment [CODE] Description I can clean the app using ./gradlew clean . But when launching using npx react-native run-android , the build fails in the same spot: [CODE] The place in the build process where it goes a... | android|react-native|gradle|react-native-reanimated-v2 | 0 | 2022-07-06T15:24:22.613Z | 2,022 | 7 | 15 | 2 | 311 | 0 | 603 | 78 | 4 | 3 | true | true | false | false | false | false | zero |
72,886,216 | Reason for not being able to search the app-specific files in Android and solution | <p>I am building a react native app which includes <em>pdf file download</em> and <em>image upload</em> functionality.</p>
<p>For doing file download, I am using <strong>react-native-fs</strong> and <strong>react-native-html-to-pdf</strong> and for image upload, I am using the <strong>axios</strong> and <strong>react-n... | I am building a react native app which includes pdf file download and image upload functionality. For doing file download, I am using react-native-fs and react-native-html-to-pdf and for image upload, I am using the axios and react-native-image-crop-picker . I have already implemented the image upload functionality lon... | java|android|react-native|networking|filesystems | 0 | 2022-07-06T15:26:46.397Z | 2,022 | 7 | 15 | 2 | 81 | 1 | 2,433 | 82 | 5 | 2 | true | false | false | false | false | false | zero |
72,886,226 | how can I go from groggy to kotlin Dsl protobuf | <p>I am applying Proto DataStore and I am applying protobuf in my Kotlin Dsl gradle but I can't implement it correctly. enter the code here.</p>
<pre><code>plugins {
id("com.android.library")
id("org.jetbrains.kotlin.android")
id("kotlin-kapt")
id("dagger.hilt.android.... | I am applying Proto DataStore and I am applying protobuf in my Kotlin Dsl gradle but I can't implement it correctly. enter the code here. [CODE] thank you very much!. | android|kotlin|gradle-kotlin-dsl | 0 | 2022-07-06T15:27:24.020Z | 2,022 | 7 | 15 | 2 | 29 | 1 | 166 | 47 | 3 | 1 | true | false | false | false | false | false | zero |
72,886,256 | How to pass ArrayList size from onBindViewHolder to getItemCount() method in RecyclerView? | <p>I have this array inside onBindViewHolder method like that.</p>
<pre><code>checklistHelper = dbHelper.getChecklists(id);
String status = checklistHelper.getStatus();
String[] statusSplit = status.split("\n");
ArrayList<String> newStatusList = new Array... | I have this array inside onBindViewHolder method like that. [CODE] I want to pass size to below method [CODE] By doing that getItemCount won't get any values in it, this means I don't see any item. If I want to put that code in the Adapter constructor the items get showed, but after deleting a row, the row gets recreat... | java|android | 1 | 2022-07-06T15:29:27.380Z | 2,022 | 7 | 15 | 2 | 64 | 2 | 478 | 90 | 2 | 3 | true | false | false | false | false | false | low |
72,886,296 | Google Play Store downloading old versions of app | <p>We rolled out an internal testing track a few weeks ago and added some emails to it so people could test, it worked fine.</p>
<p>I have an app that was uploaded yesterday at 7:00pm CST to an open testing track on Google Play. It supports Android API Level 26-33, which were the same levels that the internal track sup... | We rolled out an internal testing track a few weeks ago and added some emails to it so people could test, it worked fine. I have an app that was uploaded yesterday at 7:00pm CST to an open testing track on Google Play. It supports Android API Level 26-33, which were the same levels that the internal track supported. Wh... | android|google-play|google-play-console | 0 | 2022-07-06T15:32:14.577Z | 2,022 | 7 | 15 | 2 | 57 | 1 | 783 | 49 | 3 | 0 | false | false | false | false | false | false | zero |
72,886,413 | Build failed with an exceptio (:app:validateSigningDebug) | <p>i use visual studio code for firs time and i run flutter aplecation and then i got this error please help me</p>
<p>FAILURE: Build failed with an exception.</p>
<ul>
<li>What went wrong:
Execution failed for task ':app:validateSigningDebug'.</li>
</ul>
<blockquote>
<p>java.util.concurrent.ExecutionException: com.and... | i use visual studio code for firs time and i run flutter aplecation and then i got this error please help me FAILURE: Build failed with an exception. What went wrong: Execution failed for task ':app:validateSigningDebug'. java.util.concurrent.ExecutionException: com.android.builder.utils.SynchronizedFile$ActionExecutio... | android|flutter | 0 | 2022-07-06T15:40:42.327Z | 2,022 | 7 | 15 | 2 | 28 | 1 | 428 | 57 | 2 | 0 | false | false | false | false | false | false | zero |
72,886,421 | Is there any way for the android developers to add an option to make it possible to download and install prograns directly onto the SD card? | <p>Is there any way for the android developers to add an option to make it possible to download and install prograns directly onto the SD card?
When I move an app from internal storage to the SD card. The app won't work.</p> | Is there any way for the android developers to add an option to make it possible to download and install prograns directly onto the SD card? When I move an app from internal storage to the SD card. The app won't work. | android | 0 | 2022-07-06T15:40:59.910Z | 2,022 | 7 | 15 | 2 | 13 | 0 | 217 | 140 | 1 | 0 | false | true | false | false | false | false | zero |
72,886,577 | How can I navigate to a particular fragment on app B after opening my app with intent from another app B | <p>I have an app A that directs user to another app B when the user clicks on update on app A.The app B contains a MainActivity which holds the fragment container and there are only 3 fragments. The first fragment is a splash screen, the second fragment contains a recycler view of all the apps, and when a user clicks a... | I have an app A that directs user to another app B when the user clicks on update on app A.The app B contains a MainActivity which holds the fragment container and there are only 3 fragments. The first fragment is a splash screen, the second fragment contains a recycler view of all the apps, and when a user clicks any ... | android|kotlin|android-fragments|android-activity | 0 | 2022-07-06T15:53:03.933Z | 2,022 | 7 | 15 | 2 | 29 | 1 | 1,195 | 104 | 4 | 1 | true | false | false | false | false | false | zero |
72,886,600 | Android is killing my app "Force finishing activity". How to debug? | <p>I have the following log output</p>
<pre><code>W/ActivityTaskManager: Force finishing activity com.x.y/.MainActivity
</code></pre>
<p>and no other warnings/errors from my app itself or anything that gives me a hint in a direction for me to debug what is causing the issue.</p>
<p>I only now that this behaviour come... | I have the following log output [CODE] and no other warnings/errors from my app itself or anything that gives me a hint in a direction for me to debug what is causing the issue. I only now that this behaviour comes when I scroll down a RecyclerView list that is backed by firestore and loads data through paging. It does... | android|android-recyclerview | 0 | 2022-07-06T15:55:09.907Z | 2,022 | 7 | 15 | 2 | 81 | 1 | 1,192 | 67 | 2 | 2 | true | false | false | false | false | false | zero |
72,886,818 | variable reset to initialize value after for each loop | <p>After change value of finalQuizID in if condition in foreach loop, it reset to initialize value in spite of condition is true.
My Code:</p>
<pre><code>class SelectQuizActivity : AppCompatActivity() {
private lateinit var binding: ActivitySelectQuizBinding
private val mFireStore = FirebaseFirestore.getInstance()
priv... | After change value of finalQuizID in if condition in foreach loop, it reset to initialize value in spite of condition is true. My Code: [CODE] Log: TAG_after_forEach: MNP01 (value of quizID parameter) TAG_final: NULL | android|android-studio|kotlin | 0 | 2022-07-06T16:12:24.830Z | 2,022 | 7 | 16 | 2 | 25 | 0 | 216 | 54 | 3 | 1 | true | true | false | false | false | false | zero |
72,886,863 | Databinding adapter doesn't provide data to recycler view | <p>I have 2 fragments in my mvvm application that both have different view models but fetch data from the same repository. The first one shows a list of entities which are presented in the recycler view, the second one is for adding a new entity to the database. I also use data binding in my application. The problem ap... | I have 2 fragments in my mvvm application that both have different view models but fetch data from the same repository. The first one shows a list of entities which are presented in the recycler view, the second one is for adding a new entity to the database. I also use data binding in my application. The problem appea... | android|xml|kotlin|mvvm|data-binding | 0 | 2022-07-06T16:16:55.173Z | 2,022 | 7 | 16 | 2 | 55 | 1 | 1,002 | 57 | 5 | 4 | true | false | false | false | false | false | zero |
72,886,885 | How to make a POST request Retrofit with data class like body json in Kotlin | <p>I want to make a POST request but using data class like json (request body) but is not working... (bad request 400 error). This is my code................
It seems that the connection is good but the parameters go wrong in the body</p>
<pre><code>data class Login(val correo:String="",val password:String=&q... | I want to make a POST request but using data class like json (request body) but is not working... (bad request 400 error). This is my code................ It seems that the connection is good but the parameters go wrong in the body [CODE] | android|retrofit2 | 0 | 2022-07-06T16:19:17.417Z | 2,022 | 7 | 16 | 2 | 47 | 0 | 238 | 76 | 2 | 1 | true | true | false | false | false | false | zero |
72,886,892 | Kotlin Room Database: How to save result from sum query? | <p>I´m new to Kotlin and trying to learn it by programming an app for work time recording.</p>
<p>I´ve created a room database which works fine when inserting data. In the next step I would like to retrieve the sum of a column and store this value in a variable. And this is the point where I get stuck. Here are the aff... | I´m new to Kotlin and trying to learn it by programming an app for work time recording. I´ve created a room database which works fine when inserting data. In the next step I would like to retrieve the sum of a column and store this value in a variable. And this is the point where I get stuck. Here are the affected snip... | database|sqlite|kotlin|android-room | -2 | 2022-07-06T16:19:38.587Z | 2,022 | 7 | 16 | 2 | 94 | 1 | 576 | 56 | 4 | 2 | true | false | false | false | false | true | negative |
72,886,905 | How to trigger a fake call with react native without using Voip? | <p>Just want to make an UI and call even the app is closed.</p>
<p>'''I've tried CallKeep but I doesn't work'''</p> | Just want to make an UI and call even the app is closed. '''I've tried CallKeep but I doesn't work''' | android|ios|react-native|expo | 1 | 2022-07-06T16:20:41.447Z | 2,022 | 7 | 16 | 2 | 40 | 0 | 101 | 64 | 4 | 0 | false | true | false | false | false | false | low |
72,886,944 | Xamarin Android BottomNavigation Bar can't work.Please Help me | <p>I was run the program it's was break mode.What wrong in my code Help me please.</p>
<p>UI only is fine but the program is break mode after add NavigationItemSelected event.</p>
<pre><code> private void BottomNavigation_NavigationItemSelected(object sender, BottomNavigationView.NavigationItemSelectedEventArgs e)
... | I was run the program it's was break mode.What wrong in my code Help me please. UI only is fine but the program is break mode after add NavigationItemSelected event. [CODE] Here Break Mode Error Please Help me! | c#|xamarin.android|bottomnavigationview | 0 | 2022-07-06T16:23:51.297Z | 2,022 | 7 | 16 | 2 | 44 | 1 | 210 | 62 | 3 | 1 | true | false | false | false | false | false | zero |
72,887,084 | Change the color of the icon that opens the navigation bar, located in the toolbar | <p>I am trying to change only the color of the icon that opens the navigation drawer. I have tried using a few solutions found on here like IconTint and the one current in my themes.xml file. The tint only changed the color of the icons in the drawer, not the toggle itself. Thanks!</p>
<pre><code>Main Layout
<Li... | I am trying to change only the color of the icon that opens the navigation drawer. I have tried using a few solutions found on here like IconTint and the one current in my themes.xml file. The tint only changed the color of the icons in the drawer, not the toggle itself. Thanks! [CODE] | android|menu|themes|nav | 0 | 2022-07-06T16:38:04.903Z | 2,022 | 7 | 16 | 2 | 24 | 0 | 286 | 82 | 4 | 1 | true | true | false | false | false | false | zero |
72,887,109 | Bug Firebase sent event add_to_card with item_price | <p>I sent the item bundles with params from Google examples</p>
<pre><code>val itemJeggings = Bundle().apply {
putString(FirebaseAnalytics.Param.ITEM_ID, "SKU_123")
putString(FirebaseAnalytics.Param.ITEM_NAME, "jeggings")
putString(FirebaseAnalytics.Param.ITEM_CATEGORY, "... | I sent the item bundles with params from Google examples [CODE] and get results in the debug console like this: Why can't i get a normal double price? | android|firebase|kotlin|firebase-analytics | 1 | 2022-07-06T16:40:24.133Z | 2,022 | 7 | 16 | 2 | 66 | 0 | 150 | 51 | 4 | 1 | true | true | false | false | false | false | low |
72,887,140 | How to connect to Android main device partition with adb when it's in recovery mode? | <p>A tablet got bricked due to accidentally editing the build.prop file in /system incorrectly. The device has a custom Android 10 and it won't boot.</p>
<p>We managed to get it to boot in recovery mode. By plugging an OTG cable to a PC, we can run <code>adb devices</code> and we see it as:</p>
<pre><code>List of devic... | A tablet got bricked due to accidentally editing the build.prop file in /system incorrectly. The device has a custom Android 10 and it won't boot. We managed to get it to boot in recovery mode. By plugging an OTG cable to a PC, we can run adb devices and we see it as: [CODE] I can run adb root and then adb shell with s... | android|shell|adb|recovery|usb-otg | 0 | 2022-07-06T16:42:23.513Z | 2,022 | 7 | 16 | 2 | 96 | 0 | 892 | 84 | 5 | 1 | true | true | false | false | false | false | zero |
72,887,162 | com.segment.analytics.android:analytics noncompliant version in my app on the Google Play Console | <p>My app is written on android native code and I got this warning on the play store console</p>
<p>Your app "appName" version code "xxxx" includes SDK <strong>com.segment.analytics.android:analytics</strong> or an SDK that one of your libraries depends on, which collects personal or sensitive data ... | My app is written on android native code and I got this warning on the play store console Your app "appName" version code "xxxx" includes SDK com.segment.analytics.android:analytics or an SDK that one of your libraries depends on, which collects personal or sensitive data that includes but may not b... | android|firebase|google-analytics|google-developers-console|segment-analytics | 5 | 2022-07-06T16:44:04.607Z | 2,022 | 7 | 16 | 2 | 339 | 0 | 1,054 | 97 | 5 | 1 | true | true | false | false | false | false | low |
72,887,177 | Android BLE GATT write data is not being received by BLE Peripheral despite GATT_SUCCESS | <p>After writing, <code>onCharacteristicWrite()</code> gets called with the status <code>BluetoothGatt.GATT_SUCCESS</code>, but I don't actually see it on my peripheral.</p>
<p>I know the issue isn't on the peripheral because it works when I use a generic BLE Scanner app.</p>
<p>This is what my <code>writeCharacteristi... | After writing, onCharacteristicWrite() gets called with the status BluetoothGatt.GATT_SUCCESS , but I don't actually see it on my peripheral. I know the issue isn't on the peripheral because it works when I use a generic BLE Scanner app. This is what my writeCharacteristic function looks like: [CODE] I've tried using a... | android|bluetooth-lowenergy|gatt|bluetooth-gatt | 0 | 2022-07-06T16:45:45.753Z | 2,022 | 7 | 16 | 2 | 73 | 1 | 435 | 88 | 4 | 1 | true | false | false | false | false | false | zero |
72,887,208 | Deeplinks only work when using a slash in Jetpack Navigation | <p>I'm trying to use <a href="https://developer.android.com/guide/navigation/navigation-deep-link#:%7E:text=When%20building%20your%20project%2C%20the%20Navigation%20component%20replaces%20the%20%3Cnav%2Dgraph%3E%20element%20with%20generated%20%3Cintent%2Dfilter%3E%20elements%20to%20match%20all%20of%20the%20deep%20links... | I'm trying to use <nav-graph> generator to generate <intent-filter> elements in my AndroidManifest.xml In one of the fragments in my nav_graph.xml , I added: [CODE] In the generated APK, the AndroidManifest.xml looks like below [CODE] Now, the problem is with the additional android:path="/" . It made the app ... | android|deep-linking|android-jetpack-navigation|android-deep-link | 0 | 2022-07-06T16:47:35.977Z | 2,022 | 7 | 16 | 2 | 36 | 1 | 571 | 60 | 4 | 2 | true | false | false | false | false | false | zero |
72,887,240 | When one object is clicked, two listeners are fired | <h2>Good day!</h2>
<br/>
I made two cards using **CardView**, then each of them has a **Title** and a **body**. The body should expand when you click on the title. But when you click on "*carsCollapse*", "*socketsCollapse*" also fires. This can be seen on the video. Also, for clarity, I made a Toast, so we can see tha... | Good day! I made two cards using **CardView**, then each of them has a **Title** and a **body**. The body should expand when you click on the title. But when you click on "*carsCollapse*", "*socketsCollapse*" also fires. This can be seen on the video. Also, for clarity, I made a Toast, so we can see that when you click... | java|android|android-studio|android-layout|onclicklistener | 0 | 2022-07-06T16:49:45.353Z | 2,022 | 7 | 16 | 2 | 50 | 0 | 523 | 51 | 5 | 3 | true | true | false | false | false | false | zero |
72,887,253 | How do I use getAltitude() in android? | <p>I'm really new to android studio, and I'm trying to implement a "getAltitude()" although everything online is really outdated (8+ years old). How do I use getAltitude? Also, sorry if this is vague, I just don't know where to start.</p> | I'm really new to android studio, and I'm trying to implement a "getAltitude()" although everything online is really outdated (8+ years old). How do I use getAltitude? Also, sorry if this is vague, I just don't know where to start. | java|android|gps | 1 | 2022-07-06T16:51:51.293Z | 2,022 | 7 | 16 | 2 | 45 | 0 | 241 | 38 | 3 | 0 | false | true | false | false | false | false | low |
72,887,280 | Cordova Background Fetch ajax request not completing and another not starting | <p>Im currently using Cordova Background Fetch to retrieve any notices for the user and launching the notifications locally. But while the app plugin is launched the ajax request remains pending and the second one doesnt launch, I assume its because of the 30sec timeout.</p>
<p>Can I get any assistance on the code belo... | Im currently using Cordova Background Fetch to retrieve any notices for the user and launching the notifications locally. But while the app plugin is launched the ajax request remains pending and the second one doesnt launch, I assume its because of the 30sec timeout. Can I get any assistance on the code below or any o... | jquery|ajax|cordova|cordova-plugins|android-notifications | 2 | 2022-07-06T16:53:41.873Z | 2,022 | 7 | 16 | 2 | 69 | 0 | 506 | 77 | 5 | 1 | true | true | false | false | false | false | low |
72,887,297 | What does "chrome" mean in Android Navigation? | <p>If you look at the Android navigation documentation, the word <strong><code>chorme</code></strong> appears frequently.</p>
<p>I would like to know exactly what it means.</p>
<h4><a href="https://developer.android.com/reference/androidx/navigation/fragment/NavHostFragment" rel="nofollow noreferrer">NavHostFragment</a... | If you look at the Android navigation documentation, the word chorme appears frequently. I would like to know exactly what it means. NavHostFragment NavHostFragment is intended to be used as the content area within a layout resource defining your app's chrome around it. NavigationUI Class which hooks up elements typica... | android|navigation | 2 | 2022-07-06T16:54:45.097Z | 2,022 | 7 | 16 | 2 | 34 | 0 | 554 | 46 | 2 | 0 | false | true | false | false | false | false | low |
72,887,454 | andriod app (customer) talk to service provider (docters) app to app communcation | <p>i have a requirement where customer cannot afford consulting charges per min, so I need a solutions on android mobile app to app communication for prepaid customers .How to design and what is the best technologies to use.. Appreciate your suggestions.</p> | i have a requirement where customer cannot afford consulting charges per min, so I need a solutions on android mobile app to app communication for prepaid customers .How to design and what is the best technologies to use.. Appreciate your suggestions. | android|callscreeningservice | 0 | 2022-07-06T17:07:03.243Z | 2,022 | 7 | 17 | 2 | 13 | 0 | 251 | 81 | 2 | 0 | false | true | false | false | false | false | zero |
72,887,488 | Downloading mp3 file in android | <p>I am making downloading file with this class on Android.</p>
<p>It is triggered by button.</p>
<p>When pushing button on Android, it opens the window, there are audio related application listed.</p>
<p>(such as spotify, itunes, vlc etc....)</p>
<p>However I want to let user download this as file.</p>
<p>Is it possib... | I am making downloading file with this class on Android. It is triggered by button. When pushing button on Android, it opens the window, there are audio related application listed. (such as spotify, itunes, vlc etc....) However I want to let user download this as file. Is it possible? [CODE] | android|flutter | 0 | 2022-07-06T17:10:37.137Z | 2,022 | 7 | 17 | 2 | 108 | 0 | 292 | 31 | 2 | 1 | true | true | false | false | false | false | zero |
72,887,491 | How to remove/replace native splash logo in android 12 in flutter | <p>As we know that in flutter we can set custom logo or image in native splash screen that comes white by default. but in android 12 there is default option that it comes with launcher icon in place of white screen at the time of app launch. How can we replace that icon?</p> | As we know that in flutter we can set custom logo or image in native splash screen that comes white by default. but in android 12 there is default option that it comes with launcher icon in place of white screen at the time of app launch. How can we replace that icon? | android|flutter|flutter-test | 1 | 2022-07-06T17:10:58.910Z | 2,022 | 7 | 17 | 2 | 378 | 1 | 268 | 65 | 3 | 0 | false | false | false | false | false | false | low |
72,887,654 | Ionic/Cordova App staying on white screen after splash screen - WebView cache file error | <p>Recently updated android-targetSDKVersion=30 for our ionic app, in certain Android 11 & 12 phones it is giving blank screen after splash screen and it is not going away.
It works on some Android 11 & 12 devices and all versions in emulator, but some of the Samsung(S20, S21), latest Pixel 6 all are having thi... | Recently updated android-targetSDKVersion=30 for our ionic app, in certain Android 11 & 12 phones it is giving blank screen after splash screen and it is not going away. It works on some Android 11 & 12 devices and all versions in emulator, but some of the Samsung(S20, S21), latest Pixel 6 all are having this issue. I ... | android|cordova|ionic-framework|ionic5 | 1 | 2022-07-06T17:25:44.360Z | 2,022 | 7 | 17 | 2 | 662 | 1 | 745 | 88 | 4 | 1 | true | false | false | false | false | false | low |
72,887,876 | Convert Jetpack Compose Image into BitMap Image for Sharing Purpose | <p>I am looking for help on how to share image binary content from my PhotoApp to external Social Media apps.</p>
<p>I load the image from an API using <code>Coil</code> and display the image in a composable.</p>
<pre><code>@Composable
fun PhotoDetailsScreen( photo: AstroPhoto ... ) {
val context =... | I am looking for help on how to share image binary content from my PhotoApp to external Social Media apps. I load the image from an API using Coil and display the image in a composable. [CODE] Clicking on the AssistChip calls the below shareAstroPhoto() fxn that takes the uri pointing to the image file to fire an ACTIO... | android|android-jetpack-compose|android-sharing|coil | 0 | 2022-07-06T17:46:24.187Z | 2,022 | 7 | 17 | 2 | 444 | 1 | 797 | 67 | 4 | 2 | true | false | false | false | false | false | zero |
72,887,977 | Cardview not displaying | <p>I am trying to use com.google.android.material.card.MaterialCardView to display images and text. In the xml file it appears to be correct but when running the application, the card view is blank not even a text. Below are my xml file and grade file. The actual output I want also is shown in the picture (expected out... | I am trying to use com.google.android.material.card.MaterialCardView to display images and text. In the xml file it appears to be correct but when running the application, the card view is blank not even a text. Below are my xml file and grade file. The actual output I want also is shown in the picture (expected output... | java|android-studio|android-cardview | 0 | 2022-07-06T17:54:54.163Z | 2,022 | 7 | 17 | 2 | 23 | 1 | 450 | 23 | 3 | 2 | true | false | false | false | false | false | zero |
72,888,032 | How an Android background service in a Huawei mobile phone can know if the user has changed into the "private space"? | <p>I am running a background service app in a Huawei mobile phone, and I would like to detect when the user changes into the private space that some Huawei mobile phones have (see <a href="https://consumer.huawei.com/en/support/content/en-us15834600/" rel="nofollow noreferrer">https://consumer.huawei.com/en/support/con... | I am running a background service app in a Huawei mobile phone, and I would like to detect when the user changes into the private space that some Huawei mobile phones have (see https://consumer.huawei.com/en/support/content/en-us15834600/ ). I have tried asking the OS for the number of installed applications since in t... | android|huawei-mobile-services | 1 | 2022-07-06T18:00:02.720Z | 2,022 | 7 | 18 | 2 | 52 | 0 | 877 | 117 | 2 | 0 | false | true | false | false | false | false | low |
72,888,322 | Flutter&Bluetooth - Is there any method for detecting earpods' tap? | <p>I'm searching for method that detects earpods' tap signal in flutter.
My purpose is this.</p>
<blockquote>
<p>When user taps earpods, application with flutter detect that signal.
Then, application do some specific tasks(not volume down/up).</p>
</blockquote>
<p>I already knew that using fluter_blue plugin is helpful... | I'm searching for method that detects earpods' tap signal in flutter. My purpose is this. When user taps earpods, application with flutter detect that signal. Then, application do some specific tasks(not volume down/up). I already knew that using fluter_blue plugin is helpful for scan. But, I can't find what I want. Th... | android|ios|flutter|bluetooth | 0 | 2022-07-06T18:27:23.503Z | 2,022 | 7 | 18 | 2 | 36 | 0 | 342 | 67 | 4 | 0 | false | true | false | false | false | false | zero |
72,888,425 | Sticky item content in RecyclerView | <p>What is the best way to stick the content of a recyclerview items to the side of the screen. So that when the element goes off screen its content sticks to the side and goes with its parent only after there is no room in the rest of the element for that child.</p>
<p>I've attached the example where user scrolls left... | What is the best way to stick the content of a recyclerview items to the side of the screen. So that when the element goes off screen its content sticks to the side and goes with its parent only after there is no room in the rest of the element for that child. I've attached the example where user scrolls left, so the r... | android|android-recyclerview|linearlayoutmanager | 0 | 2022-07-06T18:37:29.033Z | 2,022 | 7 | 18 | 2 | 64 | 1 | 382 | 35 | 3 | 0 | false | false | false | false | false | false | zero |
72,888,428 | Java - Android Media Player - change icon play to pause. Back not working | <p>i have a code for playing sound from firebase storage. I setting now for ImageView change icon play to pause for playing music. I need the icon to go back to play after playing. Does anyone know how to do this?</p>
<pre><code>public void song444 (View v)
{
MediaPlayer mediaPlayer = new MediaPlayer();
try {
... | i have a code for playing sound from firebase storage. I setting now for ImageView change icon play to pause for playing music. I need the icon to go back to play after playing. Does anyone know how to do this? [CODE] Thank you for your help. | java|android | 1 | 2022-07-06T18:37:35.903Z | 2,022 | 7 | 18 | 2 | 39 | 1 | 242 | 73 | 2 | 1 | true | false | false | false | false | false | low |
72,888,585 | (It's not connected with not having the internet Or with enabling auth in firebase menu) ignoring header X-Firebase-Locale because its value was null | <pre><code>Firebase problem!(It's not connected with not having the internet in emulator Or with enabling auth in firebase menu) When i created login and password everything worked fine after that i connected Realtime database and since that i get an error "ignoring header X-Firebase-Locale because its value was ... | [CODE] Please add some context to explain the code sections (or check that you have not incorrectly formatted all of your question as code). private fun addUserToDatabase(name: String, email: String, uid: String){ //change mDbRef = FirebaseDatabase.getInstance().reference mDbRef.child("user").child(uid).setVa... | android|firebase|android-studio|kotlin|android-layout | 0 | 2022-07-06T18:53:07.023Z | 2,022 | 7 | 18 | 2 | 39 | 0 | 363 | 149 | 5 | 2 | true | true | false | false | false | false | zero |
72,888,788 | How do I use AOSP resource overlays to change the default apps in launcher3? | <p>I have multiple products with varying hardware resources. I want to modify the launcher3 desktop so that certain apps only appear on the hardware for which they are supported.</p>
<p>In <code><aosp_root>/device/<company>/<product>/<product>.mk</code> I have...</p>
<pre><code>DEVICE_PACKAGE_OV... | I have multiple products with varying hardware resources. I want to modify the launcher3 desktop so that certain apps only appear on the hardware for which they are supported. In <aosp_root>/device/<company>/<product>/<product>.mk I have... [CODE] I can see during a build that some of my overlays take effect. For examp... | android|android-source|android-launcher | 0 | 2022-07-06T19:14:12.403Z | 2,022 | 7 | 19 | 2 | 138 | 0 | 647 | 76 | 3 | 2 | true | true | false | false | false | false | zero |
72,888,947 | Android build output gives [HILT] only | <p>I am trying to use room with hilt but it gives me just that output
I added all needed annoatations to fragments, activities , viewmodels and my application class.And I add dependencies.</p> | I am trying to use room with hilt but it gives me just that output I added all needed annoatations to fragments, activities , viewmodels and my application class.And I add dependencies. | android|android-room|dagger-hilt | 0 | 2022-07-06T19:30:29.683Z | 2,022 | 7 | 19 | 2 | 34 | 2 | 185 | 38 | 3 | 0 | false | false | false | false | false | false | zero |
72,889,076 | Data being passed from Activity to Fragment is returning null | <p>I have reviewed multiple solutions to my question, but each attempt results in my android application crashing due to the data being sent returning null. I am attempting to send a ArrayList of Strings to a fragment, but when I launch my application I receive the following error.</p>
<pre><code>E/AndroidRuntime: FATA... | I have reviewed multiple solutions to my question, but each attempt results in my android application crashing due to the data being sent returning null. I am attempting to send a ArrayList of Strings to a fragment, but when I launch my application I receive the following error. [CODE] The following is my MainActivity ... | java|android|android-fragments | 0 | 2022-07-06T19:44:17.967Z | 2,022 | 7 | 19 | 2 | 41 | 1 | 612 | 61 | 3 | 5 | true | false | false | false | false | false | zero |
72,889,123 | How to manage BLE | <p>I am currently working on a project to connect a Google Glass Explorer Edition (Android Kitkat and therefore API 19) to an Arduino board emitting data in BLE. I know that manage BLE with API 19 is more difficult than with an higher API but I have no choice..</p>
<p>I have already received some advices in this topic ... | I am currently working on a project to connect a Google Glass Explorer Edition (Android Kitkat and therefore API 19) to an Arduino board emitting data in BLE. I know that manage BLE with API 19 is more difficult than with an higher API but I have no choice.. I have already received some advices in this topic : API 19 a... | java|android|bluetooth-lowenergy | 0 | 2022-07-06T19:48:20.210Z | 2,022 | 7 | 19 | 2 | 44 | 0 | 925 | 17 | 3 | 1 | true | true | false | false | false | false | zero |
72,889,180 | Wifi List<ScanResult> information batch | <p>Sorry this question might be easy/confusing because I'm new to Java and Android Studio.</p>
<p>The android.net.wifi.ScanResult class has fields SSID/BSSID that gives the information of the scanned access point by calling ScanResult.SSID.</p>
<p>However, if I create List = scanresults, how should I access the informa... | Sorry this question might be easy/confusing because I'm new to Java and Android Studio. The android.net.wifi.ScanResult class has fields SSID/BSSID that gives the information of the scanned access point by calling ScanResult.SSID. However, if I create List = scanresults, how should I access the information of each Scan... | android|android-studio|wifi|android-wifi|wifimanager | 0 | 2022-07-06T19:55:10.170Z | 2,022 | 7 | 19 | 2 | 39 | 1 | 637 | 39 | 5 | 0 | false | false | false | false | false | false | zero |
72,889,255 | Top Tab Navigator height problem when wrapped in ScrollView | <p>I have this basic <a href="https://reactnavigation.org/docs/material-top-tab-navigator/" rel="nofollow noreferrer">Tab component</a> wrapped in a ScrollView:</p>
<pre class="lang-js prettyprint-override"><code> const MyTab = () => {
return (
<ScrollView>
<View style={{flex:1}}>
... | I have this basic Tab component wrapped in a ScrollView: [CODE] Each screen have this basic View component: [CODE] But the default behavior is that the components don't show up: However, if I manually set the height of the parent View (that wraps my Tab.Navigator component) the components starts to show up, but not the... | javascript|android|css|react-native|scrollview | 0 | 2022-07-06T20:03:26.937Z | 2,022 | 7 | 20 | 2 | 24 | 0 | 816 | 59 | 5 | 2 | true | true | false | false | false | false | zero |
72,889,426 | Stop handler if no more files are found | <p>I am doing a project in android.I am trying to get the names of files one by one in Toast .My problem is how to stop the handler if there are no more files available</p>
<p>Here :</p>
<pre><code>private void finder (){
final Handler h= new Handler();
final Runnable r= new Runnable (){ public void run (){ h.post dela... | I am doing a project in android.I am trying to get the names of files one by one in Toast .My problem is how to stop the handler if there are no more files available Here : [CODE] | java|android|handler|runnable | 0 | 2022-07-06T20:19:59.917Z | 2,022 | 7 | 20 | 2 | 24 | 0 | 179 | 39 | 4 | 1 | true | true | false | false | false | false | zero |
72,889,452 | broadcasting song in android studio | <p>I am developing an application in android studio using Java in which you can create a room and share the ID with other people and then they can join and sing together. So far I create the room and they can get in and communicate. My problem is when I play a song from my database which I am using Firebase. It only pl... | I am developing an application in android studio using Java in which you can create a room and share the ID with other people and then they can join and sing together. So far I create the room and they can get in and communicate. My problem is when I play a song from my database which I am using Firebase. It only plays... | java|android|firebase|streaming|broadcasting | 0 | 2022-07-06T20:22:41.837Z | 2,022 | 7 | 20 | 2 | 30 | 0 | 490 | 35 | 5 | 0 | false | true | false | false | false | false | zero |
72,889,579 | Android wear complication update on date change | <p>First of all, I have to say that I am a a newbie in terms of Wear OS programming (and with very little knowledge in Java programming in general :( ).</p>
<p>I would like to make a complications that updates when the date changed (whenever the change is triggered at midnight or when the user sets a new date). I succe... | First of all, I have to say that I am a a newbie in terms of Wear OS programming (and with very little knowledge in Java programming in general :( ). I would like to make a complications that updates when the date changed (whenever the change is triggered at midnight or when the user sets a new date). I successfully ma... | android|wear-os|android-wear-complication | 2 | 2022-07-06T20:36:21.040Z | 2,022 | 7 | 20 | 2 | 56 | 1 | 1,893 | 47 | 3 | 3 | true | false | false | false | false | false | low |
72,889,592 | vb.net WebServices and HTTPS | <p>We have a web app that uses some WebServices for a companion mobile app (Android). This web app runs on an internal network, as isn't accessible from the "outside". The mobile app accesses these webservices on login (things like checking login credentials, populating a SQLite DB, etc.). Currently, the web ... | We have a web app that uses some WebServices for a companion mobile app (Android). This web app runs on an internal network, as isn't accessible from the "outside". The mobile app accesses these webservices on login (things like checking login credentials, populating a SQLite DB, etc.). Currently, the web app... | android|security|soap|https | 0 | 2022-07-06T20:37:34.920Z | 2,022 | 7 | 20 | 2 | 21 | 0 | 1,021 | 28 | 4 | 0 | false | true | false | false | false | false | zero |
72,889,721 | How to troubleshoot crashes detected by Google Play Store for Flutter app | <p>I have a flutter app I am trying to publish to Google Play store.</p>
<p>Play store is saying the app is crashing on Pixel 2 (api 28) with below error. Other devices they use for testing don't get this error.</p>
<p>Could not find anything on this error. When I test on Pixel 2 (api 28) emulator on my PC the app does... | I have a flutter app I am trying to publish to Google Play store. Play store is saying the app is crashing on Pixel 2 (api 28) with below error. Other devices they use for testing don't get this error. Could not find anything on this error. When I test on Pixel 2 (api 28) emulator on my PC the app does not crash. How c... | android|flutter|google-play | 3 | 2022-07-06T20:53:33.060Z | 2,022 | 7 | 20 | 2 | 640 | 1 | 350 | 73 | 3 | 1 | true | false | false | false | false | false | low |
72,889,754 | Add Image in listView using image from url Picasso crash in android | <p>Bonjour
I have spent days and night looking for an answer suitable to my case
can you help please
Here is the code I am using
anytime I add the ligne with Picasso, the program crashes
It works fine with static images from drawable
I just want to display the text with the image that corresponds</p>
<pre><code> pub... | Bonjour I have spent days and night looking for an answer suitable to my case can you help please Here is the code I am using anytime I add the ligne with Picasso, the program crashes It works fine with static images from drawable I just want to display the text with the image that corresponds [CODE] When I use Picasso... | android|json|listview|url|picasso | -1 | 2022-07-06T20:56:32.850Z | 2,022 | 7 | 20 | 2 | 52 | 1 | 454 | 67 | 5 | 1 | true | false | false | false | false | true | negative |
72,889,761 | How do I create maven package of github | <p>I want to create a package of my android dependency - <a href="https://github.com/dev-aniketj" rel="nofollow noreferrer">https://github.com/dev-aniketj</a></p>
<p>What kind of steps I have to perform to create my own package??</p>
<p>I already research on it and my project is based on android, so have make maven pac... | I want to create a package of my android dependency - https://github.com/dev-aniketj What kind of steps I have to perform to create my own package?? I already research on it and my project is based on android, so have make maven package, but don't how to create it. Please Help me !!! | android|maven|github|repository|repo | 0 | 2022-07-06T20:56:59.173Z | 2,022 | 7 | 20 | 2 | 33 | 0 | 284 | 39 | 5 | 0 | false | true | false | false | false | false | zero |
72,889,896 | How to utilize Burp with the Android Emulator without a user certificate or modifying the application? | <p>In order to perform some Android Penetration Testing, I'd like to setup Burp to intercept traffic from the Android Emulator. Unfortunately, with later versions of Android, this requires modifying the manifest in order to include interception by a proxy with a user supplied certificate. Surely, there is a better / ea... | In order to perform some Android Penetration Testing, I'd like to setup Burp to intercept traffic from the Android Emulator. Unfortunately, with later versions of Android, this requires modifying the manifest in order to include interception by a proxy with a user supplied certificate. Surely, there is a better / easie... | android|proxy|penetration-testing|burp | 1 | 2022-07-06T21:10:50.170Z | 2,022 | 7 | 21 | 2 | 98 | 1 | 326 | 102 | 4 | 0 | false | false | false | false | false | false | low |
72,889,899 | Weird Play Store crash related to features not used by my Flutter app | <p>I am trying to publish a flutter app to Google Play store. Google internal testing is posting this ANR crash only on "AQUOS sense2 SH-01L - DOCOMO" device (sdk 28).</p>
<p>Error message mentions <code>quicksearchbox</code>, <code>LOGIN_ACCOUNTS_CHANGED</code>, <code>TikTok</code>, which is weird as my app ... | I am trying to publish a flutter app to Google Play store. Google internal testing is posting this ANR crash only on "AQUOS sense2 SH-01L - DOCOMO" device (sdk 28). Error message mentions quicksearchbox , LOGIN_ACCOUNTS_CHANGED , TikTok , which is weird as my app does not use any social media, accounts/logins... | android|flutter|google-play | 0 | 2022-07-06T21:11:15Z | -1 | -1 | -1 | -1 | 185 | 1 | 685 | 69 | 3 | 1 | true | false | false | false | false | false | zero |
72,889,937 | Custom GSON deserializer | <p>My response returning colors as strings. So I can get background color like "home_background" etc. I then take string and convert it to color from resource with same name. I do not want to do this in View ( Composables ) I want to create gson deserializer to parse it. Here is my data class:</p>
<pre><code>... | My response returning colors as strings. So I can get background color like "home_background" etc. I then take string and convert it to color from resource with same name. I do not want to do this in View ( Composables ) I want to create gson deserializer to parse it. Here is my data class: [CODE] And i am no... | android|kotlin|gson | 0 | 2022-07-06T21:16:32.493Z | 2,022 | 7 | 21 | 2 | 23 | 0 | 572 | 24 | 3 | 1 | true | true | false | false | false | false | zero |
72,889,980 | Circular progress bar in android which rotate in certain defined pattern | <p>I want to create a circular progress bar in android that should behave like a pendulum.</p>
<p><a href="https://i.stack.imgur.com/AyDAv.gif" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/AyDAv.gif" alt="enter image description here" /></a></p>
<p>I have tried multiple libraries online like this <a hr... | I want to create a circular progress bar in android that should behave like a pendulum. I have tried multiple libraries online like this https://github.com/lopspower/CircularProgressBar but not able to achieve using this library. I tried using layer-list but looking for some decent way to achieve this behavior [CODE] i... | android|xml|kotlin|android-layout | 2 | 2022-07-06T21:21:14.253Z | 2,022 | 7 | 21 | 2 | 42 | 0 | 512 | 72 | 4 | 1 | true | true | false | false | false | false | low |
72,889,989 | Unable to launch google map link in flutter | <p>Using the link got from google Maps API -> <strong><a href="https://maps.google.com/?cid=10698500154823482329" rel="nofollow noreferrer">https://maps.google.com/?cid=10698500154823482329</a></strong> is not working/opening in the app. But when I try to open the same place URL(but it's a website link) <strong><a h... | Using the link got from google Maps API -> https://maps.google.com/?cid=10698500154823482329 is not working/opening in the app. But when I try to open the same place URL(but it's a website link) https://g.page/jessidrivingschool?share is working fine when using the launch url_launcher library in flutter. [CODE] Can you... | android|flutter|google-maps|google-api|maps | 0 | 2022-07-06T21:22:03.377Z | 2,022 | 7 | 21 | 2 | 137 | 1 | 352 | 43 | 5 | 1 | true | false | false | false | false | false | zero |
72,889,994 | OnAttach DialogFragment called from Adapter Android | <p>Im trying to create an adapter that will hold some order.
For each of the orders there is an icon that if I would click on the icon the data will be removed from the recycle view adapter and the entity wont show in the recycle view.</p>
<p>My on click class in the RecycleView adapter:</p>
<pre><code> @Override
... | Im trying to create an adapter that will hold some order. For each of the orders there is an icon that if I would click on the icon the data will be removed from the recycle view adapter and the entity wont show in the recycle view. My on click class in the RecycleView adapter: [CODE] This on click is in the function V... | android|android-activity|adapter|android-dialogfragment|recycleview | 0 | 2022-07-06T21:22:29.840Z | 2,022 | 7 | 21 | 2 | 21 | 0 | 689 | 51 | 5 | 2 | true | true | false | false | false | false | zero |
72,890,132 | How can I change the position of the hint in an editText? | <p>I want to align my second hint(email) to match the position of the first one(nickname), and I can't seem to do it.
Please check my layout from this <a href="https://i.stack.imgur.com/PJA8U.png" rel="nofollow noreferrer">link</a></p>
<pre class="lang-xml prettyprint-override"><code><com.google.android.material.tex... | I want to align my second hint(email) to match the position of the first one(nickname), and I can't seem to do it. Please check my layout from this link [CODE] please note that I am a beginner in android, so take it easy on me. | android | 0 | 2022-07-06T21:37:43.650Z | 2,022 | 7 | 21 | 2 | 35 | 0 | 227 | 57 | 1 | 1 | true | true | false | false | false | false | zero |
72,890,133 | How can I pass the values to previous screen in jet pack compose modalBottomSheet | <p>I have a jetpack compose screen. When I click on the button the modalBottomSheet is opened. When I click on a button in the modalBottomSheet I want to collapse the bottom sheet and pass some values to previous screen. How can I do that?</p> | I have a jetpack compose screen. When I click on the button the modalBottomSheet is opened. When I click on a button in the modalBottomSheet I want to collapse the bottom sheet and pass some values to previous screen. How can I do that? | android|navigation|android-jetpack-compose | -1 | 2022-07-06T21:37:51.123Z | 2,022 | 7 | 21 | 2 | 38 | 1 | 236 | 81 | 3 | 0 | false | false | false | false | false | true | negative |
72,890,155 | Question about : Repetitive Content CH play | <p>I would like to thank you in advance for your comments.
I have more than 2 applications, using the same source code with the same graphical interface (in app). But the content is separate.</p>
<p>Example 1 is: app group includes:</p>
<pre><code>1.ringtone
2.sound effects & memes
3.Sound Quotes
</code></pre>
<p>E... | I would like to thank you in advance for your comments. I have more than 2 applications, using the same source code with the same graphical interface (in app). But the content is separate. Example 1 is: app group includes: [CODE] Example 2: the app group includes: Anime romantic movies With different content as above, ... | android | 0 | 2022-07-06T21:40:42.063Z | 2,022 | 7 | 21 | 2 | 28 | 0 | 364 | 43 | 1 | 1 | true | true | false | false | false | false | zero |
72,890,314 | Android gradle Issue - Flutter Could not load compiled classes for script 'C:\src\flutter\packages\flutter_tools\gradle\flutter.gradle' from cache | <p>I have a problem with my Gradle Sync.
I use IntelliJ and Android Studio to build a Flutter / Dart App.
I create a project and simply run then it show error something like that.</p>
<p>FAILURE: Build failed with an exception.</p>
<ul>
<li><p>Where:
Build file 'C:\Users\Muhammad Asad Hameed\StudioProjects\videojson\an... | I have a problem with my Gradle Sync. I use IntelliJ and Android Studio to build a Flutter / Dart App. I create a project and simply run then it show error something like that. FAILURE: Build failed with an exception. Where: Build file 'C:\Users\Muhammad Asad Hameed\StudioProjects\videojson\android\app\build.gradle' li... | android|flutter|firebase|gradle|build.gradle | 0 | 2022-07-06T22:00:51.390Z | 2,022 | 7 | 22 | 2 | 216 | 0 | 724 | 146 | 5 | 0 | false | true | false | false | false | false | zero |
72,890,466 | How to test android app on all screen sizes | <p>I've created my app but I decided to <strong>test</strong> it on <strong>all screens</strong> to be <strong>adaptive</strong>. Maybe <strong>testing</strong> it in
<code>MDPI(160dpi), HDPI(240dpi), XHDPI(320dpi), XXHDPI(480dpi) and XXXHDPI(640dpi)</code> which corresponds to all screen sizes. However I tested my app... | I've created my app but I decided to test it on all screens to be adaptive . Maybe testing it in MDPI(160dpi), HDPI(240dpi), XHDPI(320dpi), XXHDPI(480dpi) and XXXHDPI(640dpi) which corresponds to all screen sizes. However I tested my app on two devices support 320dpi . I thought that I get the same result but it don't ... | android|testing|genymotion|screen-size | 0 | 2022-07-06T22:21:25.430Z | 2,022 | 7 | 22 | 2 | 106 | 1 | 591 | 43 | 4 | 0 | false | false | false | false | false | false | zero |
72,890,501 | I need help regrading deleting items inside RecyclerView. Deletion works but updating RecyclerView sometimes doesn't work after deletion | <p>Sometimes delete function works sometimes not. I think the problem is with the notifyItemRemove or removing items inside the array. Worked on finding the bug for 3 days but in vain.
This is the adapter class</p>
<pre><code>public class ChecklistItems extends AppCompatActivity {
Toolbar toolbar;
RecyclerView recycler... | Sometimes delete function works sometimes not. I think the problem is with the notifyItemRemove or removing items inside the array. Worked on finding the bug for 3 days but in vain. This is the adapter class [CODE] } I have used most of the (notify) functions which update the RecyclerView but none worked properly. [COD... | java|android | 0 | 2022-07-06T22:27:35.460Z | 2,022 | 7 | 22 | 2 | 50 | 3 | 322 | 136 | 2 | 2 | true | false | false | false | false | false | zero |
72,890,968 | ./ci/android-wait-for-emulator.sh: No such file or directory | <p>I got a gitlab-ci yaml with a build stage and a test stage. The build stage runs successfully but the test stage keeps trowing the next error:</p>
<p><a href="https://i.stack.imgur.com/DE0yj.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/DE0yj.png" alt="enter image description here" /></a></p>
<p... | I got a gitlab-ci yaml with a build stage and a test stage. The build stage runs successfully but the test stage keeps trowing the next error: gitlab-ci: [CODE] I've tried a couple of things but nothing seems to work, i can`t get the emulator to work correctly so if anyone has any idea or advice. | android|kotlin|testing|gitlab-ci | 0 | 2022-07-06T23:53:36.467Z | 2,022 | 7 | 23 | 2 | 33 | 0 | 297 | 60 | 4 | 1 | true | true | false | false | false | false | zero |
72,891,022 | Catching exception still crashes Android App | <p>I was experimenting with CryptoPP library and I noticed it crashes in some cases, on investigating further, I saw that when it threw an exception, on linux it caught it too , but on android, it doesnt. So i made a very simple sanity check, here it is :</p>
<pre><code>void random_test() {
LOGD("EXCEPTION : ... | I was experimenting with CryptoPP library and I noticed it crashes in some cases, on investigating further, I saw that when it threw an exception, on linux it caught it too , but on android, it doesnt. So i made a very simple sanity check, here it is : [CODE] And then I call it so : [CODE] It doesnt go to Exception cau... | android|c++|android-ndk | -2 | 2022-07-07T00:08:06.133Z | 2,022 | 7 | 0 | 3 | 59 | 1 | 847 | 44 | 3 | 5 | true | false | false | false | false | true | negative |
72,891,270 | React Native Error Error: Unable to resolve module ../containers/TopWishOut from ....\App\navigators\MainNavigator.js: | <p>I am building app using react native and I faced an error.
I added newly screen by copying certain page on the same project and reload app but occur an error
I try to solve this issue by restarting metro and restart nox(emulator) but this issue is not fixed.</p>
<pre><code>import { AuthContext } from '../AuthProvide... | I am building app using react native and I faced an error. I added newly screen by copying certain page on the same project and reload app but occur an error I try to solve this issue by restarting metro and restart nox(emulator) but this issue is not fixed. [CODE] And TopWishOut.js is like this: [CODE] Error message i... | android|react-native|debugging|metro-bundler | 0 | 2022-07-07T01:03:53.070Z | 2,022 | 7 | 1 | 3 | 24 | 0 | 366 | 118 | 4 | 2 | true | true | false | false | false | false | zero |
72,891,504 | Saving object that contains an array of objects | <p>Let's say I have an object. And one of the characteristics of that on object is that it contains an array of objects different from itself</p>
<p>Now, I want to save that container as well as all the objects inside of it. Would Serializing and saving that object, into internal storage or sharedPreferences, also save... | Let's say I have an object. And one of the characteristics of that on object is that it contains an array of objects different from itself Now, I want to save that container as well as all the objects inside of it. Would Serializing and saving that object, into internal storage or sharedPreferences, also save all of th... | java|android-studio|serialization|local-storage|sharedpreferences | 0 | 2022-07-07T01:55:55.697Z | 2,022 | 7 | 1 | 3 | 41 | 0 | 599 | 47 | 5 | 0 | false | true | false | false | false | false | zero |
72,891,744 | How to add a list of composables as parameter | <p>Im trying to pass a list of Composables, in this case Columns, as a parameter to later populate a view, for that I'm adding the parameter <strong>List<@Composable (ColumnScope.() -> Unit)></strong> on a composable function and populating a List with simple Columns.</p>
<p>The problem I'm having is that the ... | Im trying to pass a list of Composables, in this case Columns, as a parameter to later populate a view, for that I'm adding the parameter List<@Composable (ColumnScope.() -> Unit)> on a composable function and populating a List with simple Columns. The problem I'm having is that the Columns generate a Type mismatch [CO... | android|kotlin|android-jetpack-compose | 1 | 2022-07-07T02:44:09.590Z | 2,022 | 7 | 2 | 3 | 68 | 2 | 389 | 45 | 3 | 2 | true | false | false | false | false | false | low |
72,891,764 | Why my future builder doesn,t work that is inside a future builder in flutter | <pre><code>
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({Key? key}) : super(key: key);
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
late Future<bool> _forWifiChecking;
Future? _future;
Fut... | [CODE] What i am trying do is i have app, first when running the app i won't to check if there is wifi connected and if not send the user to a page that says wifi connecting and in the backend it will check for wifi until wifi connectes. after user connected to wifi i what to display a wifi connected page and then the ... | android|flutter|flutter-layout|flutter-web | 0 | 2022-07-07T02:47:30.763Z | 2,022 | 7 | 2 | 3 | 47 | 0 | 546 | 77 | 4 | 1 | true | true | false | false | false | false | zero |
72,891,832 | android broadcastReceiver not working after first intent action | <p>Be informed we are using broadcastreceiver for action intent to dismiss the notification dialog. It works when we use it for the first time, after that it just goes unresponsive. The first time notification pops up, we click dismiss, the action intent works just fine, but onwards from second notification, it stops w... | Be informed we are using broadcastreceiver for action intent to dismiss the notification dialog. It works when we use it for the first time, after that it just goes unresponsive. The first time notification pops up, we click dismiss, the action intent works just fine, but onwards from second notification, it stops work... | android | 1 | 2022-07-07T03:00:23.407Z | 2,022 | 7 | 3 | 3 | 36 | 0 | 491 | 63 | 1 | 3 | true | true | false | false | false | false | low |
72,892,047 | Get individual value from the List created using SQFLITE | <p>I have come up with an app that takes title and description from the user as inputs and stores it locally using sqflite. Whenever user presses save button I should be able to Either create the list of title only or description only or both in card widget.
I tired this <strong>child: Text(notes[NoteFields.description... | I have come up with an app that takes title and description from the user as inputs and stores it locally using sqflite. Whenever user presses save button I should be able to Either create the list of title only or description only or both in card widget. I tired this child: Text(notes[NoteFields.description]), in buil... | flutter|android-studio|dart|sqflite | 0 | 2022-07-07T03:41:37.523Z | 2,022 | 7 | 3 | 3 | 22 | 1 | 461 | 56 | 4 | 1 | true | false | false | false | false | false | zero |
72,892,091 | AccessibilityNodeInfo.ACTION_CLICK (or other actions) does not prevent inactivity as gestureBuilder.addStroke does | <p>One of my application goal is to prevent another android application (not mine) from disconnecting due to inactivity and causing user to re-logon. I can use gestureBuilder.addStroke successfully to achieve the goal. But, gestureBuilder is not available on older android versions (VERSION.SDK_INT <= 23).</p>
<p>So,... | One of my application goal is to prevent another android application (not mine) from disconnecting due to inactivity and causing user to re-logon. I can use gestureBuilder.addStroke successfully to achieve the goal. But, gestureBuilder is not available on older android versions (VERSION.SDK_INT <= 23). So, I try to use... | android|accessibility|accessibilityservice|user-inactivity | 0 | 2022-07-07T03:52:14.017Z | 2,022 | 7 | 3 | 3 | 41 | 0 | 927 | 114 | 4 | 1 | true | true | false | false | false | false | zero |
72,892,180 | Flutter Unresolved class 'ApplicationName' | <p>I wanted to upload my application to git, it gives a warning and when I say show the warning, I get an error like this. I just opened the android folder and synced, but I could not get a result. This issue only occurs when trying to upload my project to git. I tried many ways but failed
How can I fix this problem?</... | I wanted to upload my application to git, it gives a warning and when I say show the warning, I get an error like this. I just opened the android folder and synced, but I could not get a result. This issue only occurs when trying to upload my project to git. I tried many ways but failed How can I fix this problem? [COD... | android|flutter | 0 | 2022-07-07T04:08:27.620Z | 2,022 | 7 | 4 | 3 | 620 | 1 | 322 | 42 | 2 | 1 | true | false | false | false | false | false | zero |
72,892,225 | Buildozer Shared Library "PyAudio and PortAudio" | <p>It's about pyaudio and portaudio again.</p>
<p>first when I wrote custom recipe for portaudio, I faced problem about "pthread or libpthread library not found",
then I build it using configure --host=x86_64, cmake and make for android arch "x86_64" and I put modified pyaudio with main.py file. now... | It's about pyaudio and portaudio again. first when I wrote custom recipe for portaudio, I faced problem about "pthread or libpthread library not found", then I build it using configure --host=x86_64, cmake and make for android arch "x86_64" and I put modified pyaudio with main.py file. now it raises... | python|android|pyaudio|buildozer|portaudio | 0 | 2022-07-07T04:17:51.057Z | 2,022 | 7 | 4 | 3 | 52 | 0 | 575 | 48 | 5 | 0 | false | true | false | false | false | false | zero |
72,892,463 | Can I use same flutter app for both android and ios apps? | <p>Let's say I have an app that is both native android and ios.
If I want to change one of the features using flutter, can I write with flutter only once for both android and ios?</p>
<p>The current method: <strong>add-to-app</strong>, I think only works for one app, either ios or android.</p> | Let's say I have an app that is both native android and ios. If I want to change one of the features using flutter, can I write with flutter only once for both android and ios? The current method: add-to-app , I think only works for one app, either ios or android. | android|swift|flutter|dart|mobile | -1 | 2022-07-07T04:56:24.473Z | 2,022 | 7 | 4 | 3 | 85 | 2 | 264 | 57 | 5 | 0 | false | false | false | false | false | true | negative |
72,892,468 | Format time zone to Vi Locale use Moment in React-Native | <p>i am having a date problem when using Moment in React-Native.
Specifically, after I formatted the date to en locale, but now I want it to support the locale in my country is vi locale as well:</p>
<pre><code>Moment('2022-09-02T02:00:00+00:00')
.local()
.format('dddd, DD MMM);
</code></pre>
<p>the out... | i am having a date problem when using Moment in React-Native. Specifically, after I formatted the date to en locale, but now I want it to support the locale in my country is vi locale as well: [CODE] the out put: [CODE] But I want the above result about our language in Vietnam as follows: [CODE] i tried as follows: [CO... | javascript|android|ios|reactjs|react-native | 0 | 2022-07-07T04:56:59.117Z | 2,022 | 7 | 4 | 3 | 66 | 1 | 397 | 56 | 5 | 4 | true | false | false | false | false | false | zero |
72,892,602 | Accessibility: Disable VoiceOver / Talkback on password input fields | <p>Is it possible to disable VoiceOver (iOS) / Talkback (Android) on a password input field without resorting to rolling out a custom keyboard for each platform?</p>
<p>I don't want sensitive information (like password or PIN) spoken out aloud when the user is typing it in.</p> | Is it possible to disable VoiceOver (iOS) / Talkback (Android) on a password input field without resorting to rolling out a custom keyboard for each platform? I don't want sensitive information (like password or PIN) spoken out aloud when the user is typing it in. | android|ios|xamarin.forms|accessibility | 0 | 2022-07-07T05:16:44.440Z | 2,022 | 7 | 5 | 3 | 81 | 0 | 264 | 68 | 4 | 0 | false | true | false | false | false | false | zero |
72,892,663 | Microsoft graph login not working in android | <p>We are using <code>https://graph.microsoft.com/v1.0/me</code> for Microsoft login in the Android app.</p>
<p>but got <code>com.android.volley.AuthFailureError</code> error.</p>
<p><strong>AUTH CONFIG FILE:</strong></p>
<pre><code>{
"client_id": "...",
"authorization_user_agent": &qu... | We are using https://graph.microsoft.com/v1.0/me for Microsoft login in the Android app. but got com.android.volley.AuthFailureError error. AUTH CONFIG FILE: [CODE] [CODE] Although it's working with our other clientid, only creates problem in production clientid. ERROR: [CODE] [CODE] I tried to find the answer for this... | android|microsoft-graph-api|android-volley|microsoft-graph-sdks | 1 | 2022-07-07T05:25:39.207Z | 2,022 | 7 | 5 | 3 | 90 | 1 | 403 | 44 | 4 | 4 | true | false | false | false | false | false | low |
72,892,887 | Switch thumb can't set state_enabled in selector | <p>I'm making a custom switch with my own thumb and track. What I want is, in my thumb xml, set a different color in checked state, unchecked state and also, set a different color when the switch is disabled. The problem is that when I set state_enabled to false, nothind happen, just checked states works, why is this h... | I'm making a custom switch with my own thumb and track. What I want is, in my thumb xml, set a different color in checked state, unchecked state and also, set a different color when the switch is disabled. The problem is that when I set state_enabled to false, nothind happen, just checked states works, why is this happ... | android|android-layout | 0 | 2022-07-07T05:56:44.123Z | 2,022 | 7 | 5 | 3 | 25 | 1 | 333 | 48 | 2 | 1 | true | false | false | false | false | false | zero |
72,892,893 | Invoke a custom code on internet connectivity in Android | <p>I want to get latest updates from my server when I turn on the internet and generate a notification, but when the app is closed/killed/swiped from recent items, there is no way to keep my service alive and listening to network change event so that I can ping my server, I'm not sure how to do it and how other apps su... | I want to get latest updates from my server when I turn on the internet and generate a notification, but when the app is closed/killed/swiped from recent items, there is no way to keep my service alive and listening to network change event so that I can ping my server, I'm not sure how to do it and how other apps such ... | android|service|push-notification|background-service | 0 | 2022-07-07T05:57:10.037Z | 2,022 | 7 | 5 | 3 | 24 | 1 | 455 | 56 | 4 | 0 | false | false | false | false | false | false | zero |
72,892,987 | Ionic 6. App crashes when i make build and not opening | <p>I'm getting Logcat errors when I open app and the app crash when I open the app it crashing again and again. I think this is firebase issue or something need help to get rid of this problem. it's been a week I'm downgrading and upgrading all plugins but in vain and not getting any solutions.</p>
<p><code>package.jso... | I'm getting Logcat errors when I open app and the app crash when I open the app it crashing again and again. I think this is firebase issue or something need help to get rid of this problem. it's been a week I'm downgrading and upgrading all plugins but in vain and not getting any solutions. package.json : [CODE] And h... | android|angular|firebase|ionic-framework|capacitor | 0 | 2022-07-07T06:09:10.203Z | 2,022 | 7 | 6 | 3 | 207 | 1 | 352 | 54 | 5 | 2 | true | false | false | false | false | false | zero |
72,893,021 | What am I missing in viewmodelscope while use .value? | <p>I am trying to set the instance of response using setvalue/getvalue in my viewmodel class but when I assign it to the "it", it's giving me an error of 'Type Mismatch , Required:-
Network<Response<List>>? but found Network<List>. I am using Retrofit to fetch the data and Network is my seal... | I am trying to set the instance of response using setvalue/getvalue in my viewmodel class but when I assign it to the "it", it's giving me an error of 'Type Mismatch , Required:- Network<Response<List>>? but found Network<List>. I am using Retrofit to fetch the data and Network is my sealed class. Below is my... | android|android-viewmodel|android-mvvm | 1 | 2022-07-07T06:12:52.843Z | 2,022 | 7 | 6 | 3 | 38 | 1 | 535 | 53 | 3 | 5 | true | false | false | false | false | false | low |
72,893,184 | Calling a website url inside my react native app and redirect to app again on completion of file download | <p>I have a requirement in my project where a user has to go to an external website from app to download a file.After downloading the file,he should be redirected to the app again.My app is built on <strong>react-native</strong>.Can anyone suggest a novel way to deal with this problem.
<strong>A case in point:In food d... | I have a requirement in my project where a user has to go to an external website from app to download a file.After downloading the file,he should be redirected to the app again.My app is built on react-native .Can anyone suggest a novel way to deal with this problem. A case in point:In food delivery apps,the users will... | android|react-native|webview|deep-linking|inappbrowser | 0 | 2022-07-07T06:29:55.543Z | 2,022 | 7 | 6 | 3 | 160 | 0 | 538 | 105 | 5 | 0 | false | true | 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.