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,178,419
Android Studio delete notification when close app
<p>I know there is already a topic for this, but it didn't work anyway, so try creating a new one.</p> <p>MainActivity</p> <pre><code>@Override protected void onDestroy() { super.onDestroy(); MusicService musicService = new MusicService(); musicService.cancelAllNotification(getApplicationContext()); } </cod...
I know there is already a topic for this, but it didn't work anyway, so try creating a new one. MainActivity [CODE] MusicService [CODE]
android|android-studio|android-notifications
1
2022-05-09T21:32:59.450Z
2,022
5
21
0
12
0
135
49
3
2
true
true
false
false
false
false
low
72,178,538
Show Storage Image On Glide Using FileProvider.getUriFile..()
<p>Pls I have add the provider permission xml in my androidmanifest.xml , how to show image from File Path in Glide android 11, image showing in Android SDK lower that 11.</p> <pre><code>public Uri getUri(Context context) { return FileProvider.getUriForFile(context, context.getPackageName() + &quot;.provider&qu...
Pls I have add the provider permission xml in my androidmanifest.xml , how to show image from File Path in Glide android 11, image showing in Android SDK lower that 11. [CODE] Glide.with(context).load(status.getUri()).into(holder.thumbnail); FileProvider xml, scoped Storage requires this [CODE] In my android manifest f...
java|android|android-glide|android-fileprovider|scoped-storage
1
2022-05-09T21:49:42.603Z
2,022
5
21
0
51
0
401
61
5
3
true
true
false
false
false
false
low
72,178,612
Making typeorm use react-native-sqlite-2 on React Native to use JSON1
<p>I'm currently using typeorm with react-native. In order to work on this environment, typeorm use react-native-sqlite-storage internally. But this library use the standard SQLite database on Android that not support JSON1 module (I absolutelly need to use json_extract in some request).</p> <p>I know the npm package r...
I'm currently using typeorm with react-native. In order to work on this environment, typeorm use react-native-sqlite-storage internally. But this library use the standard SQLite database on Android that not support JSON1 module (I absolutelly need to use json_extract in some request). I know the npm package react-nativ...
android|react-native|sqlite|typeorm|react-native-sqlite-storage
1
2022-05-09T21:59:10.667Z
2,022
5
21
0
204
1
690
69
5
0
false
false
false
false
false
false
low
72,178,651
I want to access my System default Ringtone's name
<p>I am a newbie in kotlin/android development , I want to access my System default Ringtone's name and display it in a String , How can i do it?</p>
I am a newbie in kotlin/android development , I want to access my System default Ringtone's name and display it in a String , How can i do it?
android|flutter|kotlin
1
2022-05-09T22:04:00.567Z
2,022
5
22
0
32
0
142
50
3
0
false
true
false
false
false
false
low
72,178,814
'.', <column alias name>, <compound operator>, AS, BETWEEN, FROM, GROUP, IN, LIMIT, ORDER, WHERE, comma or semicolon expected, got 'SELECT'
<p>Please I need help fixing the error above _ in the title _ appeared in the first SELECT after FROM of this query, all suggestions are welcome so thank you very much.</p> <pre><code> public ArrayList&lt;HashMap&lt;String, String&gt;&gt; getAll_Datas() { ArrayList&lt;HashMap&lt;String, String&gt;&gt...
Please I need help fixing the error above _ in the title _ appeared in the first SELECT after FROM of this query, all suggestions are welcome so thank you very much. [CODE]
java|android|android-sqlite
1
2022-05-09T22:26:36.493Z
2,022
5
22
0
243
1
172
139
3
1
true
false
false
false
false
false
low
72,178,866
How do I run an apk on J2ME?
<p>Whats up! I just want to ask, but how do I run an .apk file j2me. I know that this question HAS been asked, but I can't seem to find an answer. Also, i'm not asking to run j2me apps on android; there are already tons of emulators. Im asking for apks running on j2me. I also know that they are developed in different V...
Whats up! I just want to ask, but how do I run an .apk file j2me. I know that this question HAS been asked, but I can't seem to find an answer. Also, i'm not asking to run j2me apps on android; there are already tons of emulators. Im asking for apks running on j2me. I also know that they are developed in different VMs....
java|android
-1
2022-05-09T22:35:08.487Z
2,022
5
22
0
65
1
475
28
2
1
true
false
false
false
false
true
negative
72,179,119
kivy app shows black screen on android phone
<p>The kivy app that I have coded up won't work on my samsung galaxy s10e but will work on my computer. Maybe I need to add somthing to my .spec file but I dont know</p> <p>Here is the code for the app:</p> <pre><code>import kivy kivy.require('2.1.0') from kivy.app import App from kivy.uix.label import Label from kivy....
The kivy app that I have coded up won't work on my samsung galaxy s10e but will work on my computer. Maybe I need to add somthing to my .spec file but I dont know Here is the code for the app: [CODE]
python|android
1
2022-05-09T23:16:16.430Z
2,022
5
23
0
38
0
199
44
2
1
true
true
false
false
false
false
low
72,179,145
Save camera picture in android webview
<p>I'm trying to save a picture from camera in webview. I get this code : i can chose between chose a file or take a picture.</p> <p>When i take a picture and confirm it, the app crashes. Cause getclipdata is null i think. Can someone help me to edit this code ? This is hard for me, but a try to understand it. I saw so...
I'm trying to save a picture from camera in webview. I get this code : i can chose between chose a file or take a picture. When i take a picture and confirm it, the app crashes. Cause getclipdata is null i think. Can someone help me to edit this code ? This is hard for me, but a try to understand it. I saw some topic a...
android|image|android-studio|webview
0
2022-05-09T23:20:50.763Z
2,022
5
23
0
150
0
425
38
4
1
true
true
false
false
false
false
zero
72,179,265
Fatal error in Unity CIL Linker - Problem with TMPro with IL2CPP
<p>I have been trying for QUITE some time to migrate my project to newer versions of Unity, and to add the 64 bit support required in order to re-release my app for android. After switching to IL@CPP, in order to target ARM64, I'm getting this error whenever I attempt to build:</p> <pre><code>Exception: Failed running...
I have been trying for QUITE some time to migrate my project to newer versions of Unity, and to add the 64 bit support required in order to re-release my app for android. After switching to IL@CPP, in order to target ARM64, I'm getting this error whenever I attempt to build: [CODE] I have tried removing the TextMesh Pr...
android|unity3d|textmeshpro
2
2022-05-09T23:44:23.460Z
2,022
5
23
0
575
1
497
64
3
1
true
false
false
false
false
false
low
72,179,274
Hide status bar in Android 10 (API 29) and use its space in the application
<p>I am trying to hide status bar in Android 10. I've already read a lot of answers to similar questions, but they don't work for my device. The goal is to use the space of the status bar as a part of application view:</p> <p><a href="https://i.stack.imgur.com/AYTAz.png" rel="nofollow noreferrer"><img src="https://i.st...
I am trying to hide status bar in Android 10. I've already read a lot of answers to similar questions, but they don't work for my device. The goal is to use the space of the status bar as a part of application view: Some of the solutions described below work on emulator, but don't work on my physical device (Redmi Note...
android|android-statusbar
5
2022-05-09T23:45:29.870Z
2,022
5
23
0
1,085
2
1,669
75
2
4
true
false
false
false
false
false
low
72,179,292
How to use DataStore with StateFlow and Jetpack Compose?
<p>I try to give the user the choice whether to use the UI Mode 'light', 'dark' or the 'system' settings. I would like to save the selection as DataStore.</p> <p>The drop down menu for the user selection is not loading the value from DataStore. It is always showing the initialvalue from stateIn() when loading the scree...
I try to give the user the choice whether to use the UI Mode 'light', 'dark' or the 'system' settings. I would like to save the selection as DataStore. The drop down menu for the user selection is not loading the value from DataStore. It is always showing the initialvalue from stateIn() when loading the screen. Setting...
kotlin|android-jetpack-compose|android-jetpack-datastore|kotlin-stateflow
1
2022-05-09T23:49:30.957Z
2,022
5
23
0
844
1
463
56
4
3
true
false
false
false
false
false
low
72,179,315
Completely decouple Android ViewModel implementation from Composable with Dagger Hilt
<p>Currently, I have something similar to:</p> <pre><code>interface MyViewModel { val elements: StateFlow&lt;List&lt;MyElements&gt;&gt; val visible: StateFlow&lt;Boolean&gt; fun onClick(button: MyElement) } @HiltViewModel class MyViewModelImpl @Inject constructor( private val myUseCases: MyUseCases, )...
Currently, I have something similar to: [CODE] I would like to know if there is some way to completely decouple my Composable from my ViewModel implementation class (i.e. remove the <MyViewModelImpl> in hiltViewModels() ). I've tried a few different things, such as making the interface an abstract class and creating @B...
android|kotlin|android-jetpack-compose|android-viewmodel|dagger-hilt
1
2022-05-09T23:54:02.780Z
2,022
5
23
0
97
0
635
85
5
1
true
true
false
false
false
false
low
72,179,389
Why am I getting Incompatible types when trying to implement stripe in Android?
<p>I am getting this error message when trying to implement stripe payment in my android application. This error comes from the presentPaymentSheet method.I am not sure why I am receiving this I am simply copying and pasting code from the strip official docs, so i am not sure where to go from here so if anyone can prov...
I am getting this error message when trying to implement stripe payment in my android application. This error comes from the presentPaymentSheet method.I am not sure why I am receiving this I am simply copying and pasting code from the strip official docs, so i am not sure where to go from here so if anyone can provide...
java|android|stripe-payments
0
2022-05-10T00:05:29.457Z
2,022
5
0
1
91
0
409
79
3
1
true
true
false
false
false
false
zero
72,179,421
How to read asynchronous data from real-time database using android Kotlin?
<p>Here is my code to read asynchronous data from a real-time database using android Kotlin:</p> <pre><code>class suDetails : AppCompatActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_su_details) su_imag...
Here is my code to read asynchronous data from a real-time database using android Kotlin: [CODE] I have referred to other questions to read asynchronous data from a real-time database but when I tried the solution I am not able to show any data in my ImageView and textView . I am getting only the blank screen. The New ...
android|kotlin|asynchronous|firebase-realtime-database
1
2022-05-10T00:12:01.443Z
2,022
5
0
1
184
1
360
75
4
2
true
false
false
false
false
false
low
72,179,599
cannot compile Room DB TypeConverter for kotlin.time.Duration
<p>only when creating a <code>androidx.room.TypeConverter</code> for a <code>kotlin.time.Duration</code>, I get the following compiler error:</p> <pre><code>MillisKotlinDurationConverter.java:6: error: Class is referenced as a converter but it does not have any converter methods. public final class MillisKotlinDuration...
only when creating a androidx.room.TypeConverter for a kotlin.time.Duration , I get the following compiler error: [CODE] the code for MillisKotlinDurationConverter.kt is shown below, and is no different for any of the other @TypeConverter s in the project: [CODE] I also didn't forget to add it into the @TypeConverters ...
android|kotlin|android-room
0
2022-05-10T00:48:26.057Z
2,022
5
0
1
58
0
343
61
3
3
true
true
false
false
false
false
zero
72,179,608
Get a list of Item with some other data (With the id of this data inside of the item)
<p>I have some products in my app and user can create Space if he want. In the home page, I'm showing all the product of the users. If the user has stored the product inside an space, in the home page you will see in the product item, the name of the space.</p> <p>Do you get it?</p> <p>You can have multiple Space and M...
I have some products in my app and user can create Space if he want. In the home page, I'm showing all the product of the users. If the user has stored the product inside an space, in the home page you will see in the product item, the name of the space. Do you get it? You can have multiple Space and Multiple Product, ...
android|sqlite|kotlin|android-room
-1
2022-05-10T00:50:54.680Z
2,022
5
0
1
40
1
753
85
4
0
false
false
false
false
false
true
negative
72,179,679
How can I "drive" in Android simulated phones when using Maps?
<p>I am working on a React Native app where I am trying to make some changes in my app depending on WHERE the current position is. I am using Android Studio's simulated phone in a Windows 10 machine. I know in IOS you have this feature called &quot;Freeway drive&quot; where it runs a simulation of me &quot;driving&quot...
I am working on a React Native app where I am trying to make some changes in my app depending on WHERE the current position is. I am using Android Studio's simulated phone in a Windows 10 machine. I know in IOS you have this feature called &quot;Freeway drive&quot; where it runs a simulation of me &quot;driving&quot; t...
android|android-studio|google-maps|geolocation|expo
1
2022-05-10T01:08:32.953Z
2,022
5
1
1
35
1
630
62
5
0
false
false
false
false
false
false
low
72,179,684
Jetpack compose merge two Modifier.clickable
<p>I'm trying to design a modifier that can be used in composable where if you click, it'll automatically log something. e.g. <code>Modifier.logClick = then(Modifier.clickable{ //log })</code></p> <p>The problem here is that when users apply to composable that come with <code>onClick</code> such as Button, my <code>mod...
I'm trying to design a modifier that can be used in composable where if you click, it'll automatically log something. e.g. Modifier.logClick = then(Modifier.clickable{ //log }) The problem here is that when users apply to composable that come with onClick such as Button, my modifier.logClick{} is then overwritten since...
android|android-jetpack-compose|android-jetpack-compose-modifier
1
2022-05-10T01:09:19.827Z
2,022
5
1
1
189
1
518
44
3
0
false
false
false
false
false
false
low
72,179,685
Flutter doctor --android-licenses not finding sdkmanager without Android Studio
<p>I'm trying to get my very first Flutter application up and running. When I ran <code>flutter doctor</code> it was saying that I was missing Android SDK, so I installed sdkmanager and ran:</p> <pre><code>sdkmanager &quot;platform-tools&quot; &quot;platform;android-29&quot; &quot;build-tools;28.0.3&quot; </code></pre...
I'm trying to get my very first Flutter application up and running. When I ran flutter doctor it was saying that I was missing Android SDK, so I installed sdkmanager and ran: [CODE] From there I ran flutter config --android-sdk /opt/android-sdk I got an error saying that I'm missing cmdline-tools, however I don't have ...
flutter|ubuntu-16.04|android-sdk-manager|avd-manager
0
2022-05-10T01:09:30.043Z
2,022
5
1
1
53
2
984
79
4
1
true
false
false
false
false
false
zero
72,179,692
W/System.err: java.net.BindException: bind failed: EADDRINUSE (Address already in use)
<p>I want to send data by using LTE but while receive the data, connected server is stop and I have lost some data.</p> <p>How to fix this error?</p> <p>and how can I wrote the code for open server to receive data around 30 min and server socket will not closed before recieve all data?</p> <p>source code for connect to...
I want to send data by using LTE but while receive the data, connected server is stop and I have lost some data. How to fix this error? and how can I wrote the code for open server to receive data around 30 min and server socket will not closed before recieve all data? source code for connect to server: [CODE] error re...
android
1
2022-05-10T01:10:59.030Z
2,022
5
1
1
45
0
332
86
1
2
true
true
false
false
false
false
low
72,179,707
Geolocation not working in workManager when app run in the background
<p>source code: <a href="https://i.stack.imgur.com/rg2Hc.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/rg2Hc.png" alt="&quot;&quot;" /></a></p> <p>When the app runs in the foreground works fine (may return location).</p> <p>But when the app runs in the background (both simulation and real device) t...
source code: When the app runs in the foreground works fine (may return location). But when the app runs in the background (both simulation and real device) the location is not returned, see the following output: please show me how to fix this problem. any help is appreciated!
flutter|android-workmanager|workmanagers
0
2022-05-10T01:13:56.733Z
2,022
5
1
1
23
0
277
69
3
0
false
true
false
false
false
false
zero
72,179,713
Fragment onBackPressed how to used back first Fragment
<p><strong>I'm going back to the first fragment here but I'm having an error defining currentfragment</strong></p> <p><strong>class Fragment declare</strong></p> <pre><code>FragmentManager fragmentManager = getFragmentManager(); </code></pre> <p><strong>onCreateView</strong></p> <pre><code> fragmentManager.addOnBackSta...
I'm going back to the first fragment here but I'm having an error defining currentfragment class Fragment declare [CODE] onCreateView [CODE] onBackPressed [CODE]
java|android|android-studio|android-fragments|android-fragmentactivity
1
2022-05-10T01:15:13.693Z
2,022
5
1
1
30
0
161
54
5
3
true
true
false
false
false
false
low
72,179,853
Google Play Console - Publish only certain changes with managed publishing
<p>I have an app that has been reviewed by Google and is ready to be published. Managed publishing is turned on. However, I am not quite ready to release it to the public yet. In the meanwhile, I would like to add a new build to a closed testing track. The problem is that when I add the new test build, it also goes to ...
I have an app that has been reviewed by Google and is ready to be published. Managed publishing is turned on. However, I am not quite ready to release it to the public yet. In the meanwhile, I would like to add a new build to a closed testing track. The problem is that when I add the new test build, it also goes to the...
android|publish|google-play-console
5
2022-05-10T01:43:29.727Z
2,022
5
1
1
424
0
647
74
3
0
false
true
false
false
false
false
low
72,179,906
Bluetooth pairing dialog not shown in lock task mode
<p>I am writing an Android Lock Task Mode application. Everything works fine except when I need to give the users access to a few settings like mobile roaming and Bluetooth printer pairing.</p> <p>When I make these settings available by adding the relevant packages in the call to <code>setLockTaskPackages</code> like t...
I am writing an Android Lock Task Mode application. Everything works fine except when I need to give the users access to a few settings like mobile roaming and Bluetooth printer pairing. When I make these settings available by adding the relevant packages in the call to setLockTaskPackages like this: mDevicePolicyManag...
android|bluetooth|popup|pairing|android-screen-pinning
1
2022-05-10T01:53:17.253Z
2,022
5
1
1
102
0
1,099
52
5
0
false
true
false
false
false
false
low
72,179,980
Flutter Firebase) I want to know how to delete old files on Storage
<p>I'm creating a real-time chat and I have the ability to upload files from the chat. For storage management, I want to remove the file from Storage a month after uploading it. Can this be implemented on Flutter? Or should I use Firebase Functions?</p> <p>I don't know yet because I'm new to node.js and firebase functi...
I'm creating a real-time chat and I have the ability to upload files from the chat. For storage management, I want to remove the file from Storage a month after uploading it. Can this be implemented on Flutter? Or should I use Firebase Functions? I don't know yet because I'm new to node.js and firebase functions. Do yo...
android|ios|node.js|firebase|flutter
0
2022-05-10T02:06:37.530Z
2,022
5
2
1
22
1
378
67
5
0
false
false
false
false
false
false
zero
72,180,030
How to save items added in RecyclerView?
<p>I have a RecyclerView but I face some problems. Whenever I add something to the recycler view and for example switch fragments or close the app all the items in the RecyclerView disappear. Would there be a way to save them? Any help would be nice!</p> <p>Here is some code to see if anyone needs it:</p> <p><strong>Ad...
I have a RecyclerView but I face some problems. Whenever I add something to the recycler view and for example switch fragments or close the app all the items in the RecyclerView disappear. Would there be a way to save them? Any help would be nice! Here is some code to see if anyone needs it: Adapter [CODE] Fragment [CO...
java|android
0
2022-05-10T02:15:52Z
-1
-1
-1
-1
51
2
323
40
2
2
true
false
false
false
false
false
zero
72,180,139
When I modify any layout it gives me an error related to Windows Universal C Runtime on Windows 10
<p>Android Studio was working fine but I modified a layout and now it gives me this error:</p> <pre><code>Execution failed for task ':app:processDebugResources'. &gt; A failure occurred while executing com.android.build.gradle.internal.res.LinkApplicationAndroidResourcesTask$TaskAction &gt; AAPT2 aapt2-7.1.3-7984345-w...
Android Studio was working fine but I modified a layout and now it gives me this error: [CODE] Everything worked normally but at the moment this error started. If I restart AS I can compile but if I modify any layout it happens again. I have read that the solution is to install Windows Universal C Runtime but I can't f...
windows|android-studio|windows-10
0
2022-05-10T02:35:21.753Z
2,022
5
2
1
141
0
470
98
3
1
true
true
false
false
false
false
zero
72,180,267
ERROR:flutter/lib/ui/ui_dart_state.cc(209)
<p>Hello everyone I'm making a video player app in Flutter, when I tried to run the videos, trows and error:</p> <p>[ERROR:flutter/lib/ui/ui_dart_state.cc(209)] Unhandled Exception: PlatformException(VideoError, Video player had error com.google.android.exoplayer2.ExoPlaybackException: Source error, null, null)</p> <p>...
Hello everyone I'm making a video player app in Flutter, when I tried to run the videos, trows and error: [ERROR:flutter/lib/ui/ui_dart_state.cc(209)] Unhandled Exception: PlatformException(VideoError, Video player had error com.google.android.exoplayer2.ExoPlaybackException: Source error, null, null) and I can't play ...
android|flutter|video
1
2022-05-10T02:58:18.843Z
2,022
5
2
1
784
2
563
42
3
1
true
false
false
false
false
false
low
72,180,283
How to insert selected result from a table into another table on Android Room's DAO class
<p>I've been developing a budget spending tracking app on Android Studio. In this particular part, what I want to do is to insert the selected result of a table &quot;budget_tracker_table&quot; into another table &quot;budget_tracker_table_alias&quot;. The SQL I coded worked without any problem when I executed it in Ap...
I've been developing a budget spending tracking app on Android Studio. In this particular part, what I want to do is to insert the selected result of a table &quot;budget_tracker_table&quot; into another table &quot;budget_tracker_table_alias&quot;. The SQL I coded worked without any problem when I executed it in App I...
java|android|sql|sqlite|dao
0
2022-05-10T03:02:19.360Z
2,022
5
3
1
30
1
512
89
5
1
true
false
false
false
false
false
zero
72,180,333
Why my Adapter's List LiveData got notified for 3 times when My Fragment is recreated
<p>As in below code snippet, I am using list.addAll() in my adapter, when my list is being added 3 times when revisit the fragment again instead of 1 time. However, this does not happen when the fragment is newly created.</p> <p>Why I got notify 3 times in my scenario from the LiveData? Is it some notify mechanism in L...
As in below code snippet, I am using list.addAll() in my adapter, when my list is being added 3 times when revisit the fragment again instead of 1 time. However, this does not happen when the fragment is newly created. Why I got notify 3 times in my scenario from the LiveData? Is it some notify mechanism in LiveData? C...
java|android|android-fragments|android-recyclerview|android-livedata
0
2022-05-10T03:11:14.140Z
2,022
5
3
1
35
1
339
85
5
1
true
false
false
false
false
false
zero
72,180,406
Get specific text from output in android studio with regex
<p>How can I get text from output in android? I have project android java that connects to websocket and I use okhttp3 for websocket listener. I have written a method when the button clicked it will search specific text and get text from console log but it always prints &quot;unmatch &quot;</p> <p>I just want to get th...
How can I get text from output in android? I have project android java that connects to websocket and I use okhttp3 for websocket listener. I have written a method when the button clicked it will search specific text and get text from console log but it always prints &quot;unmatch &quot; I just want to get the text [CO...
java|regex|string|android-studio
0
2022-05-10T03:27:08.757Z
2,022
5
3
1
33
0
505
58
4
3
true
true
false
false
false
false
zero
72,180,411
How can we send touchpad events into webview page
<p>I am trying to drag a canvas on an webpage created with qooxdoo. (<a href="https://cncapp05.alliances.commandandconquer.com/435/index.aspx?langPreferred=en_US" rel="nofollow noreferrer">EA CnCTA Game</a>). Android webview can scroll fine. The webpage however isn't recieving mouse movement events. If the webpage canv...
I am trying to drag a canvas on an webpage created with qooxdoo. ( EA CnCTA Game ). Android webview can scroll fine. The webpage however isn't recieving mouse movement events. If the webpage canvas is larger that the viewport I can only move the webview itself but I can't drag the page to it's ends. If the webview is 1...
android-webview|mouseevent|drag|qooxdoo
0
2022-05-10T03:27:51.647Z
2,022
5
3
1
97
0
1,230
49
4
1
true
true
false
false
false
false
zero
72,180,458
I get the error "the password is invalid or user does not have a password" in Kotlin login
<pre><code>private fun firebaseLogin() { // show progress progressDialog.show() firebaseAuth.signInWithEmailAndPassword(email,password).addOnSuccessListener { progressDialog.dismiss() val firebaseUser=firebaseAuth.currentUser val ema...
[CODE] I looked at my other codes, but I couldn't find any errors, I think the problem must be in this function.enter code here
android|firebase|android-studio|kotlin|authentication
0
2022-05-10T03:36:41.737Z
2,022
5
3
1
19
0
127
90
5
1
true
true
false
false
false
false
zero
72,180,568
Android:Is there any way to make the click event of dispatchGesture go through a certain view
<p>I have a fullscreen floating window that intercepts all events by default, but when I trigger a specific condition, I want to dispatch the event to the underlying window</p>
I have a fullscreen floating window that intercepts all events by default, but when I trigger a specific condition, I want to dispatch the event to the underlying window
android|accessibilityservice
0
2022-05-10T03:55:02.943Z
2,022
5
3
1
29
0
169
93
2
0
false
true
false
false
false
false
zero
72,180,576
Sort a List of objects based in its Sublist method size
<p>I'm trying to make my own &quot;Facebook reaction bar&quot; and I got into a problem, I need to sort a list of objects based in its sublist method size, let me explain!</p> <p>I have a ReactionModel which has a property &quot;usernames&quot; which is a List of Strings of usernames of those users that used it.</p> <p...
I'm trying to make my own &quot;Facebook reaction bar&quot; and I got into a problem, I need to sort a list of objects based in its sublist method size, let me explain! I have a ReactionModel which has a property &quot;usernames&quot; which is a List of Strings of usernames of those users that used it. I have a list of...
java|android|list|kotlin|sorting
0
2022-05-10T03:57:00.383Z
2,022
5
3
1
73
2
828
55
5
3
true
false
false
false
false
false
zero
72,180,828
Parse Issue (Xcode): Module 'fluttertoast' not found
<p>i have flutter code which is used to build ios and android app, when code run in xcode using simulator, it runs fine, but when run in android studio or in visual studio code using</p> <blockquote> <p>flutter run --flavor stg</p> </blockquote> <p>get the following error :</p> <blockquote> <p>Parse Issue (Xcode): Modu...
i have flutter code which is used to build ios and android app, when code run in xcode using simulator, it runs fine, but when run in android studio or in visual studio code using flutter run --flavor stg get the following error : Parse Issue (Xcode): Module 'fluttertoast' not found GeneratedPluginRegistrant.m:131:8 Co...
ios|xcode|flutter|android-studio|visual-studio-code
1
2022-05-10T04:40:48.717Z
2,022
5
4
1
898
1
425
52
5
0
false
false
false
false
false
false
low
72,180,856
Flutter set multiple data items in session storage in webview
<p>I need help to set multiple items in session storage of the flutter webview. I am using this package - <strong><code>webview_flutter: ^3.0.1</code></strong> =&gt; <a href="https://pub.dev/packages/webview_flutter" rel="nofollow noreferrer"><code>here</code></a></p> <p>I want to open a URL that will enable users to t...
I need help to set multiple items in session storage of the flutter webview. I am using this package - webview_flutter: ^3.0.1 => here I want to open a URL that will enable users to take further action in a functionality that is already present on a website. The website's code is written in a way that it accesses data ...
flutter|android-webview
0
2022-05-10T04:46:36.047Z
2,022
5
4
1
358
1
512
61
2
1
true
false
false
false
false
false
zero
72,180,970
Secure Environment in android app statusbar on payment related app
<p>I get this question when I was looking in any banking,</p> <p>payment-related apps show a specific icon that indicates a secure environment.</p> <p>I search on google but I didn't find anything on there.</p>
I get this question when I was looking in any banking, payment-related apps show a specific icon that indicates a secure environment. I search on google but I didn't find anything on there.
android|flutter|dart
0
2022-05-10T05:04:43.947Z
2,022
5
5
1
67
0
189
66
3
0
false
true
false
false
false
false
zero
72,180,990
Permission Denial : Starting Intent ( lock task mode / kiosk mode )
<p>Any one have a suggestion how to solve this error ? I am trying to run lock task with intent <strong>getLaunchIntentForPackage</strong> but I have no idea why this error is coming and which type of permission it wants to run this task.</p> <pre><code>java.lang.SecurityException: Permission Denial: starting Intent { ...
Any one have a suggestion how to solve this error ? I am trying to run lock task with intent getLaunchIntentForPackage but I have no idea why this error is coming and which type of permission it wants to run this task. [CODE]
android|android-intent|kiosk-mode
0
2022-05-10T05:09:09.373Z
2,022
5
5
1
174
1
225
67
3
1
true
false
false
false
false
false
zero
72,181,015
Google Maps aren't showing
<pre><code>import 'dart:collection'; import 'package:flutter/material.dart'; import 'package:google_maps_flutter/google_maps_flutter.dart'; class GMap extends StatefulWidget { const GMap({Key? key}) : super(key: key); @override State&lt;GMap&gt; createState() =&gt; _GMapState(); } class _GMapState extends Stat...
[CODE] So here's the coding on my googlemap.dart, my google maps aren't showing for somehow it just show blank white screen after I run the code, I'm not sure what was the problem and if anyone can help me with this I would appreciate it
android|firebase|flutter
-1
2022-05-10T05:11:45.253Z
2,022
5
5
1
29
1
237
26
3
1
true
false
false
false
false
true
negative
72,181,133
How to download blob url in webview
<p>I'm using a web view on Android. When I clicked the download button, url : &quot;blob:http://tftpblah~.com/adljk&quot; But I can't download it.</p> <p>I searched and found that the solution is converting base64 using JavaScript. But it doesn't solve this problem...</p> <p>Please help me</p>
I'm using a web view on Android. When I clicked the download button, url : &quot;blob:http://tftpblah~.com/adljk&quot; But I can't download it. I searched and found that the solution is converting base64 using JavaScript. But it doesn't solve this problem... Please help me
android|webview|blob
0
2022-05-10T05:27:13.567Z
2,022
5
5
1
1,373
1
273
35
3
0
false
false
false
false
false
false
zero
72,181,171
How to continuously animate text size based on lazy column / lazy llist scroll in Android - Jetpack Compose?
<p>I want to make a smooth transition for scaling text inside the lazy column. Currently, I am using the graphics layer to animate the text scale based on the first visible item index from the list state. But it does not provide smooth and continuous animation. I want to make it as an Animated Flat list in React native...
I want to make a smooth transition for scaling text inside the lazy column. Currently, I am using the graphics layer to animate the text scale based on the first visible item index from the list state. But it does not provide smooth and continuous animation. I want to make it as an Animated Flat list in React native. H...
android|android-jetpack-compose|lazycolumn|jetpack-compose-animation
1
2022-05-10T05:33:15.440Z
2,022
5
5
1
490
1
467
108
4
2
true
false
false
false
false
false
low
72,181,195
Axios showing Error:" Err_Bad_Request" while sending formdata using React native Expo
<p>Hi There I am trying send Image (Buffer data) and Some string using formdata to node js and mongo db using expo react native.But some how I am not able to send data using front end however my code works fine with Post man.I am sharing my code below and also sharing my error.My error shows data in console in error bl...
Hi There I am trying send Image (Buffer data) and Some string using formdata to node js and mongo db using expo react native.But some how I am not able to send data using front end however my code works fine with Post man.I am sharing my code below and also sharing my error.My error shows data in console in error block...
android|react-native|axios|expo
1
2022-05-10T05:35:57.963Z
2,022
5
5
1
4,172
1
473
85
4
2
true
false
true
false
false
false
low
72,181,245
Kotlin Spinner sselectedItem showing object not text
<p>I've created an Adapter for my spinner and the <code>getDropDownView</code> is correctly displaying the custom object as it should. But after the item is selected, instead of showing that string, it shows the full object. Any help would be appreciated.</p> <p>So instead of displaying:</p> <pre><code>&quot;(${item?.c...
I've created an Adapter for my spinner and the getDropDownView is correctly displaying the custom object as it should. But after the item is selected, instead of showing that string, it shows the full object. Any help would be appreciated. So instead of displaying: [CODE] it just displays [CODE] Spinner XML [CODE] Spin...
android|kotlin|android-spinner
0
2022-05-10T05:43:22.387Z
2,022
5
5
1
56
1
337
52
3
4
true
false
false
false
false
false
zero
72,181,393
WebAuthn JSON API call not working on Android Webview after deploying Ionic through Cordova plugin
<p>I have implemented WebAuthn API using Angular-Ionic App in frontend and Spring Boot as backend. Webauthn is working fine when I am accessing the site from the browser.</p> <p>But when I have created an Android App using Cordova Plugin, the call of Webauthn API is just not happening.</p> <p>I am using '@github/webaut...
I have implemented WebAuthn API using Angular-Ionic App in frontend and Spring Boot as backend. Webauthn is working fine when I am accessing the site from the browser. But when I have created an Android App using Cordova Plugin, the call of Webauthn API is just not happening. I am using '@github/webauthn-json' library ...
android|cordova|ionic-framework|webauthn
0
2022-05-10T06:04:23.987Z
2,022
5
6
1
133
1
1,088
98
4
3
true
false
false
false
false
false
zero
72,181,514
Merge/Combine some item which have same status in listview
<p>I want to show my JSON data in listview, here my json structure</p> <pre><code>{&quot;result&quot;:[ {&quot;id&quot;:1, &quot;status&quot;:&quot;New&quot;, &quot;revenue&quot;:3000}, {&quot;id&quot;:2, &quot;status&quot;:&quot;Qualified&quot;, &quot;revenue&quot;:10000}, {&quot;id&quot;:3, &quot;status&...
I want to show my JSON data in listview, here my json structure [CODE] In listview, I want to show data with same status will show in one row and for revenue I will sum that. I already can show result of sum revenue but i cant set that in one row. My coding will look like this like this Is this possible for show same d...
java|android|json|listview
0
2022-05-10T06:18:29.457Z
2,022
5
6
1
37
1
461
58
4
3
true
false
false
false
false
false
zero
72,181,639
Android Bluetooth function permission problem
<p>I'am trying to make bluetooth connection android App. There is a button click 'BluetoothSearchBtn' event handler. And I wanted to implement bluetooth searching function. But there is a problem with permission, and shows me redlines under the codes.</p> <p>The problems occured methods:<br> <strong>1. BluetoothSearchB...
I'am trying to make bluetooth connection android App. There is a button click 'BluetoothSearchBtn' event handler. And I wanted to implement bluetooth searching function. But there is a problem with permission, and shows me redlines under the codes. The problems occured methods: 1. BluetoothSearchBtn.setOnClickListener(...
android|bluetooth|android-permissions
1
2022-05-10T06:32:28.667Z
2,022
5
6
1
166
1
1,434
45
3
4
true
false
false
false
false
false
low
72,181,650
How do we search from Firebase realtime database while ignoring case?
<p>It turns out that searching through Firebase is case-sensitive, that's why I'm having empty results whenever I search for &quot;hammer&quot;. I'm using FirebaseRecyclerOptions for searching and displaying the result in recycleview, code below:</p> <pre><code> FirebaseRecyclerOptions&lt;ProductModel&gt; option...
It turns out that searching through Firebase is case-sensitive, that's why I'm having empty results whenever I search for &quot;hammer&quot;. I'm using FirebaseRecyclerOptions for searching and displaying the result in recycleview, code below: [CODE] Is there another way to search through the firebase while ignoring st...
java|android|firebase|firebase-realtime-database|android-recyclerview
0
2022-05-10T06:33:30.110Z
2,022
5
6
1
17
0
393
69
5
1
true
true
false
false
false
false
zero
72,181,679
Can any BLE device be a Companion Device?
<p>I'm developing a flutter application (fairly new to this). <br>My app need to connect to a BLE device and get data when it is close by. As I found Android <strong>Companion Device Manage</strong> seems to suit my requirement. BLE Hardware which I'm supposed to work is still under development(firmware) and I'm trying...
I'm developing a flutter application (fairly new to this). My app need to connect to a BLE device and get data when it is close by. As I found Android Companion Device Manage seems to suit my requirement. BLE Hardware which I'm supposed to work is still under development(firmware) and I'm trying to test above using ava...
flutter|bluetooth-lowenergy|bluetooth-gatt|pairing|android-companion-device
0
2022-05-10T06:35:19.790Z
2,022
5
6
1
138
0
1,075
41
5
3
true
true
false
false
false
false
zero
72,181,719
Android deeplink via chrome intent broke since april 2022
<p>Currently, in our organization we use chrome intent to deeplink app if app is present else it is routed to msite but since aprl 2022 it broke for all apps and most of them are routed to msite.</p> <p>Below is the implementation snippet</p> <p>in mailer/sms we send URL</p> <p><a href="https://www.deeplink.xyz.com/fgh...
Currently, in our organization we use chrome intent to deeplink app if app is present else it is routed to msite but since aprl 2022 it broke for all apps and most of them are routed to msite. Below is the implementation snippet in mailer/sms we send URL https://www.deeplink.xyz.com/fgh on click of the above link, it t...
android|deep-linking
0
2022-05-10T06:41:19.750Z
2,022
5
6
1
136
0
543
57
2
1
true
true
false
false
false
false
zero
72,181,723
Gradle sync failed: Unsupported method: Variant.getDesugaredMethods(). The version of Gradle you connect to does not support that method
<p>Woke up to this issue, not sure where to go from here. Even running gradle with --stacktrace or --scan, I can't seem to understand what exactly it wants me to do. How can I fix this? Thank you.</p> <pre><code>Unsupported method: Variant.getDesugaredMethods(). The version of Gradle you connect to does not support tha...
Woke up to this issue, not sure where to go from here. Even running gradle with --stacktrace or --scan, I can't seem to understand what exactly it wants me to do. How can I fix this? Thank you. [CODE]
android|gradle|intellij-idea
4
2022-05-10T06:42:00.640Z
2,022
5
6
1
831
3
200
136
3
1
true
false
false
false
false
false
low
72,181,837
What is difference between the getIdToken and getAppCheckToken?
<p>Currently firebase has introduce the App Check. To protect the non firebase backend firebase has introduce getAppCheckToken. Previously we are using the getIdToken to verify the user.</p> <pre><code> FirebaseAuth.getInstance().currentUser.getIdToken(true).addOnSuccessListener { Log.d(&quot;tag&quot;,it.token) //...
Currently firebase has introduce the App Check. To protect the non firebase backend firebase has introduce getAppCheckToken. Previously we are using the getIdToken to verify the user. [CODE] What's difference between both this two token. How getAppCheckToken can improve the security of the non firebase backend.
android|firebase|firebase-authentication|firebase-app-check
1
2022-05-10T06:53:37.900Z
2,022
5
6
1
62
1
312
63
4
1
true
false
false
false
false
false
low
72,181,907
Is it possible to create native android video calling app for google pixel just like samsung or xiaomi mobile phone makers provides
<p>Is it possible to develop an app that supports native android video call for google pixel just like samsung or xiaomi mobile phone makers provides. Note - Native video call is not facetime, google duo, skype or whatsapp video call. Native video call use internet internally without deducting user's data balance. You ...
Is it possible to develop an app that supports native android video call for google pixel just like samsung or xiaomi mobile phone makers provides. Note - Native video call is not facetime, google duo, skype or whatsapp video call. Native video call use internet internally without deducting user's data balance. You can...
android
0
2022-05-10T06:59:10.523Z
2,022
5
6
1
20
0
511
131
1
0
false
true
false
false
false
false
zero
72,181,913
jetpack compose blendMode or PorterDuff.Mode DST_IN
<p>I have a BLURRED background Bitmap and a horizontal scrollable row. What I want to achieve is that the background image must be visible only in the row item area...</p> <p>I've tried to apply DST_IN with blendMode but no success. Any ideas how to do it in jetpack compose?</p> <p>What I'm trying to achieve is this</p...
I have a BLURRED background Bitmap and a horizontal scrollable row. What I want to achieve is that the background image must be visible only in the row item area... I've tried to apply DST_IN with blendMode but no success. Any ideas how to do it in jetpack compose? What I'm trying to achieve is this I want to have a bl...
android|android-jetpack-compose|porter-duff
0
2022-05-10T06:59:56.860Z
2,022
5
6
1
260
2
471
51
3
0
false
false
false
false
false
false
zero
72,181,915
Go to another navigation component using Recyclerview
<p>I saw the new navigationview (I know I'm late to the party), so I want to go to another destination from the recyclerview adapter but I didn't understand how it exactly works. I looked around for a way to communicate with the NavController which is in the MainActivivty to go to another destination and I think the on...
I saw the new navigationview (I know I'm late to the party), so I want to go to another destination from the recyclerview adapter but I didn't understand how it exactly works. I looked around for a way to communicate with the NavController which is in the MainActivivty to go to another destination and I think the only ...
java|android|android-recyclerview|android-navigation
0
2022-05-10T07:00:07.057Z
2,022
5
7
1
64
2
522
53
4
0
false
false
false
false
false
false
zero
72,182,344
How to identify if bluetooth device is an app user in Java
<p>I'm building an android app that allow phone to discuss via bluetooth in Java. So i make the device discoverable and i do a discovery to find the device arround me.</p> <p>Is their a simple way to know if a device found was made discoverable by my app without having to paire both device ?</p> <p>Make the device disc...
I'm building an android app that allow phone to discuss via bluetooth in Java. So i make the device discoverable and i do a discovery to find the device arround me. Is their a simple way to know if a device found was made discoverable by my app without having to paire both device ? Make the device discoverable : [CODE]
java|android|bluetooth
0
2022-05-10T07:37:02.283Z
2,022
5
7
1
29
0
320
58
3
1
true
true
false
false
false
false
zero
72,182,556
Android Studio Firebase problem: nothing is displayed
<p>I'm creating an app with 3 other people, I have my own branch on Github. I have a recycler view in layout folder and 3 files for my products: ProductListActivity, ProductModel and ProductAdapter. When I build, I have 0 error and I am connected to the correct firebase on Android Studio but absolutly nothing is displa...
I'm creating an app with 3 other people, I have my own branch on Github. I have a recycler view in layout folder and 3 files for my products: ProductListActivity, ProductModel and ProductAdapter. When I build, I have 0 error and I am connected to the correct firebase on Android Studio but absolutly nothing is displayed...
firebase|kotlin|firebase-realtime-database|android-recyclerview
0
2022-05-10T07:52:44.967Z
2,022
5
7
1
27
0
475
53
4
3
true
true
false
false
false
false
zero
72,182,672
Convert Jnet_uri to Tbitmap in delphi
<p>In an app, I select photos through the Android gallery. As I want to select multiple photos at once, I use the <code>JIntent</code> function. Now, it all works, and I want to load the selected photos into a <code>TMSFMXtableview</code>. For this, I need to convert the photos from <code>JNet_Uri</code> to <code>TBitm...
In an app, I select photos through the Android gallery. As I want to select multiple photos at once, I use the JIntent function. Now, it all works, and I want to load the selected photos into a TMSFMXtableview . For this, I need to convert the photos from JNet_Uri to TBitmap . What is the best way to do that? This is t...
android|image|delphi
2
2022-05-10T08:02:17.237Z
2,022
5
8
1
118
1
403
37
3
1
true
false
false
false
false
false
low
72,182,704
Google Safe Browsing api result is not the same as online result
<p>I use Google Safe Browsing api doc to let My android application can check URL whether is safe or not.</p> <p><a href="https://developer.android.com/training/safetynet/safebrowsing?hl=zh-cn" rel="nofollow noreferrer">https://developer.android.com/training/safetynet/safebrowsing?hl=zh-cn</a></p> <p>But when I send va...
I use Google Safe Browsing api doc to let My android application can check URL whether is safe or not. https://developer.android.com/training/safetynet/safebrowsing?hl=zh-cn But when I send valid phish URL, there is no wrong with message. I use this URL to check the website online: https://transparencyreport.google.com...
android|google-api
0
2022-05-10T08:04:26.190Z
2,022
5
8
1
29
0
700
64
2
4
true
true
false
false
false
false
zero
72,182,758
React Native suddenly throwing May 09 2022
<p>I am currently working on a React Native project that has been previously worked on by other devs. it was compiling fine as before May 09 2022 then I tried to compile it now and it's now throwing</p> <pre><code>BUILD FAILED in 41s error Failed to install the app. Make sure you have the Android development environme...
I am currently working on a React Native project that has been previously worked on by other devs. it was compiling fine as before May 09 2022 then I tried to compile it now and it's now throwing [CODE] No new packages were added, I even tried to revert to old commits just to confirm if it's package related and it stil...
android|ios|reactjs|react-native|mobile
0
2022-05-10T08:09:44.273Z
2,022
5
8
1
145
1
468
42
5
1
true
false
false
false
false
false
zero
72,182,859
Flutter change background every dynamic second
<p>I have a application. Its simply changing background every 1.5 second(default). But I want to control it with a Slider. I changing my state but my timer is inside of initstate. So Its not effecting it. How can i make it ? My Code:</p> <pre><code>Slider( value: features.loopTime, ...
I have a application. Its simply changing background every 1.5 second(default). But I want to control it with a Slider. I changing my state but my timer is inside of initstate. So Its not effecting it. How can i make it ? My Code: [CODE] InitState: [CODE]
android|ios|flutter|dart|mobile
0
2022-05-10T08:18:14.993Z
2,022
5
8
1
66
1
255
46
5
2
true
false
false
false
false
false
zero
72,183,022
Can Xposed be used to intercept calls to native code?
<p>Referring the Frida <a href="https://erev0s.com/blog/how-hook-android-native-methods-frida-noob-friendly/" rel="nofollow noreferrer">tutorial</a>.</p> <pre><code>public class MainActivity extends AppCompatActivity { static { System.loadLibrary(&quot;native-lib&quot;); } public native int Jniint...
Referring the Frida tutorial . [CODE] In the tutorial Frida is used to intercept the call to the JNI method Jniint() . [CODE] I know Xposed can be used to hook Java methods and not native code, but is it also allowed to intercept calls to native methods (using findAndHookMethod ) like Frida so that it can block any act...
android|frida|xposed
2
2022-05-10T08:29:40.500Z
2,022
5
8
1
121
0
393
53
3
2
true
true
false
false
false
false
low
72,183,071
Ionic Android FCM updating app badge count when notification received in foreground
<p>I am currently using FCM notification payload to send notification to my mobile application. When the application is in foreground the badge number will increment as desired. However, when the application is in foreground the badge number will not increment.</p> <p>To counteract this, I have attempted to manually in...
I am currently using FCM notification payload to send notification to my mobile application. When the application is in foreground the badge number will increment as desired. However, when the application is in foreground the badge number will not increment. To counteract this, I have attempted to manually increment th...
android|mobile|ionic3|android-notifications|cordova-plugin-fcm
0
2022-05-10T08:33:58.137Z
2,022
5
8
1
122
0
840
83
5
2
true
true
false
false
false
false
zero
72,183,184
How to check if a router need password or not
<p>I am implementing an APP which will connect to a router programmatically through Xamarin.</p> <p>This is my current code</p> <pre><code>if( Capability != &quot;[ESS]&quot; &amp;&amp; Capability != &quot;[ESS][WPS]&quot; &amp;&amp; Capability != &quot;[ESS][WFA-HT]&quot; ) { //Connect to router with...
I am implementing an APP which will connect to a router programmatically through Xamarin. This is my current code [CODE] The &quot;Capability&quot; come from WiFiManager.ScanResult.Capabilities This look not safe to check a router with password or not. How should I improve this? Thank you!
android|xamarin|xamarin.android|wifi
0
2022-05-10T08:42:20.293Z
2,022
5
8
1
33
0
290
45
4
1
true
true
false
false
false
false
zero
72,183,226
App not installing in emulator after upgrading to android studio chipmunk
<p>So pushing the run app button in android studio compiles the app. But it does not install the compiled app into emulator. App is compiled successfully .</p> <pre><code>&gt; Task :app:packageGoogleDebug UP-TO-DATE &gt; Task :app:createGoogleDebugApkListingFileRedirect UP-TO-DATE &gt; Task :app:assembleGoogleDebug UP-...
So pushing the run app button in android studio compiles the app. But it does not install the compiled app into emulator. App is compiled successfully . [CODE] it just stop here. Adb is working fine. i can see the emulator log in logcat. i have 2 build flavour. Both are the same. Compiles but not installing. [CODE]
android|android-studio|android-gradle-plugin
8
2022-05-10T08:47:05.557Z
2,022
5
8
1
2,627
7
316
73
3
2
true
false
true
false
false
false
medium
72,183,230
How do I sized of grid in Gridview flutter?
<p>I want to change the dynamic size of children according to its array count. It is a way same like GridLayoutManger in android java. What I did in android(java)</p> <pre><code>GridLayoutManager mng_layout = new GridLayoutManager(this, 4/*In my case 4*/); mng_layout.setSpanSizeLookup(new GridLayoutManager.Span...
I want to change the dynamic size of children according to its array count. It is a way same like GridLayoutManger in android java. What I did in android(java) [CODE] By this I can change any grid size dynamically , I have my own formula for my layout. So Is there any way to change size of any grid in Gridview Flutter?...
flutter|gridview|android-gridview|flutter-gridview
0
2022-05-10T08:47:21.067Z
2,022
5
8
1
167
2
378
43
4
1
true
false
false
false
false
false
zero
72,183,238
Finding it difficult to implement comet chat
<p>Please can someone tell me what i'm doing wrong. I have been trying to implement comet chat into my application. I copied the code just the way it was on their website and did as i was instructed but i keep geting an error. I have initialised the chat but registering the user is where the problem is. Here is my code...
Please can someone tell me what i'm doing wrong. I have been trying to implement comet chat into my application. I copied the code just the way it was on their website and did as i was instructed but i keep geting an error. I have initialised the chat but registering the user is where the problem is. Here is my code be...
android|kotlin|sdk|implementation|cometchat
0
2022-05-10T08:47:54.530Z
2,022
5
8
1
97
0
1,130
44
5
1
true
true
false
false
false
false
zero
72,183,262
apollo does not take a request sending react-native
<p>I am using react-native with apollo.</p> <p>The problem is that when i activates the app on physical device android, there are not any responds about any my request.</p> <p>But, In IOS case and android simulator on debug mode, There are no problem. Very well done in request-respond.</p> <p>This issue has not occurre...
I am using react-native with apollo. The problem is that when i activates the app on physical device android, there are not any responds about any my request. But, In IOS case and android simulator on debug mode, There are no problem. Very well done in request-respond. This issue has not occurred so far. This is what I...
android|react-native|apollo
0
2022-05-10T08:49:52.700Z
2,022
5
8
1
17
0
389
51
3
0
false
true
false
false
false
false
zero
72,183,546
Android TextureView: onFrameAvailable not called
<p>I have a TextureView in my xml:</p> <pre><code>&lt;TextureView android:id=&quot;@+id/textureView&quot; android:layout_width=&quot;300dp&quot; android:layout_height=&quot;300dp&quot; android:backgroundTint=&quot;#FF0000&quot; /&gt; </code></pre> <p>I want to draw objects with openGL ES in this Te...
I have a TextureView in my xml: [CODE] I want to draw objects with openGL ES in this TextureView. I do: [CODE] onSurfaceTextureAvailable is executed but then onFrameAvailable is never called (should be called 30 or 60 times per second). How to solve this problem ? Thanks.
android|opengl-es|textureview|android-textureview
0
2022-05-10T09:08:28.990Z
2,022
5
9
1
31
0
272
48
4
2
true
true
false
false
false
false
zero
72,183,612
Library source does not match the bytecode for class BaseQuickAdapter
<p>I'm trying to use notifyDataSetChanged() to update an adapter that inherits the BaseQuickAdapter class, but it says &quot;<em>Cannot resolve method 'notifyDataSetChanged' in 'DeviceAdapter'</em>&quot;, then I open the BaseQuickAdapter.java file and it says &quot;<em>Library source does not match the bytecode for cla...
I'm trying to use notifyDataSetChanged() to update an adapter that inherits the BaseQuickAdapter class, but it says &quot; Cannot resolve method 'notifyDataSetChanged' in 'DeviceAdapter' &quot;, then I open the BaseQuickAdapter.java file and it says &quot; Library source does not match the bytecode for class BaseQuickA...
java|android-studio
0
2022-05-10T09:12:54.250Z
2,022
5
9
1
12
0
455
69
2
1
true
true
false
false
false
false
zero
72,183,627
How to remove ALL data from the database
<p>I would like to remove ALL data from the database (with auto-increment values). I use Room.</p> <p>I have read in the documentation there is something like clearAllTables() but according to the documentation:</p> <blockquote> <p>This does NOT reset the auto-increment value</p> </blockquote> <p>So this method is not ...
I would like to remove ALL data from the database (with auto-increment values). I use Room. I have read in the documentation there is something like clearAllTables() but according to the documentation: This does NOT reset the auto-increment value So this method is not smart. There is also no drop database. To do that, ...
android|database|android-sqlite|android-room
0
2022-05-10T09:14:18.990Z
2,022
5
9
1
54
1
609
40
4
0
false
false
false
false
false
false
zero
72,183,641
how to add support RtL into viewPager Kotlin?
<p>I want to add or apply :</p> <pre><code>viewPager?.rotationY = 180F </code></pre> <p>to my view pager just when app language is setted to fa or ps from en. or prevent applying that when language is en. I used <code>viewPager?.rotationY = 180F</code> in whole app but I want it apply just to fa and ps language. and us...
I want to add or apply : [CODE] to my view pager just when app language is setted to fa or ps from en. or prevent applying that when language is en. I used viewPager?.rotationY = 180F in whole app but I want it apply just to fa and ps language. and used android:rotationY=&quot;180&quot; but it apply to all app language...
android|kotlin|android-viewpager
0
2022-05-10T09:15:16.077Z
2,022
5
9
1
42
1
468
45
3
4
true
false
false
false
false
false
zero
72,183,765
Show JSON Data in Kotlin
<p>I would like to place JSON Data inside the material card widget (see image). Before asking, I also did my own research - however, I can't seem to fix it. Everything that I try ends up in even more error codes.</p> <p>For now, I'm just trying to get the right output by using Log. Later on, I want to place the JSON da...
I would like to place JSON Data inside the material card widget (see image). Before asking, I also did my own research - however, I can't seem to fix it. Everything that I try ends up in even more error codes. For now, I'm just trying to get the right output by using Log. Later on, I want to place the JSON data inside ...
android|json|kotlin
0
2022-05-10T09:22:42.530Z
2,022
5
9
1
75
1
572
24
3
3
true
false
false
false
false
false
zero
72,183,832
How to avoid InvocationTargetException when invoke WifiP2pManager.setWFDInfo()?
<p>I am trying to create an android Wi-Fi Display (Miracast) application.</p> <p>I use following codes to register a sink port:</p> <pre><code>Class clsWifiP2pManager = Class.forName(&quot;android.net.wifi.p2p.WifiP2pManager&quot;); Method methodSetWFDInfo = clsWifiP2pManager.getMethod(&quot;setWFDInfo&quot;, ...
I am trying to create an android Wi-Fi Display (Miracast) application. I use following codes to register a sink port: [CODE] but when the app is running, throws some exceptions: [CODE] i know that there have checkConfigureWifiDisplayPermission() in setWFDInfo() , it will check if my app have the system app permission: ...
android|wifi-direct|wifip2p|invocationtargetexception
0
2022-05-10T09:27:59.713Z
2,022
5
9
1
52
1
576
79
4
3
true
false
false
false
false
false
zero
72,183,885
intent.resolveActivity returns null on android.intent.action.OPEN_DOCUMENT in API 30
<p>I am having problem to pick a pdf file. Before, the targetSdk is 29 and it's working fine but when I updated it to 30, device with Android 11 and above can't open the file manager to pick the pdf file. Device with version below Android 11 is working fine. This is the code to create the Intent:</p> <pre><code>Intent ...
I am having problem to pick a pdf file. Before, the targetSdk is 29 and it's working fine but when I updated it to 30, device with Android 11 and above can't open the file manager to pick the pdf file. Device with version below Android 11 is working fine. This is the code to create the Intent: [CODE] and this is the co...
java|android|kotlin
0
2022-05-10T09:31:59.290Z
2,022
5
9
1
79
1
423
84
3
2
true
false
false
false
false
false
zero
72,183,905
How to determine the Completion of bluetooth connection , from hcilog
<p>How to see from hcilog that classic bluetooth is connected completely and the protocol stack is Bluedroid</p>
How to see from hcilog that classic bluetooth is connected completely and the protocol stack is Bluedroid
android-bluetooth
0
2022-05-10T09:33:13.510Z
2,022
5
9
1
7
0
105
69
1
0
false
true
false
false
false
false
zero
72,183,985
Xamarin Forms, "Invalid syntax for a hexadecimal numeric entity reference" error inside App.xaml when importing Icon
<p>the font.otf is imported correctly and placed inside the correct folder because the font works on letters but importing an icon from the otf file does not work because of the syntax error. Entering <strong>&amp;#x</strong> before the icon code &quot;uf1ea&quot; is what caused the error but it's important for findin...
the font.otf is imported correctly and placed inside the correct folder because the font works on letters but importing an icon from the otf file does not work because of the syntax error. Entering &#x before the icon code &quot;uf1ea&quot; is what caused the error but it's important for finding the icon otherwise it w...
visual-studio|xaml|xamarin.forms|xamarin.android
0
2022-05-10T09:38:42.613Z
2,022
5
9
1
75
2
454
116
4
1
true
false
false
false
false
false
zero
72,184,123
Cannot scroll pdf file in android app using react-native-pdf
<p>I have used react-native-pdf in my app, basically the top portion is the pdf, while at the bottom part there can be links, or text.</p> <p>it is working fine in on ios, which means the pdf scrolls perfectly but in android, it is not scrolling when there is a lot of text in the bottom section.</p> <p>Code is as below...
I have used react-native-pdf in my app, basically the top portion is the pdf, while at the bottom part there can be links, or text. it is working fine in on ios, which means the pdf scrolls perfectly but in android, it is not scrolling when there is a lot of text in the bottom section. Code is as below: [CODE] [CODE]
android|react-native|pdf|react-native-pdf
0
2022-05-10T09:48:25.477Z
2,022
5
9
1
249
1
318
60
4
2
true
false
false
false
false
false
zero
72,184,143
Caused by: java.util.zip.ZipException: zip END header not found
<p>Able to create release build but when I add dexguard and try to create a release build its throws the following error</p> <pre><code>Caused by: org.gradle.internal.event.ListenerNotificationException: Failed to notify project evaluation listener. at org.gradle.internal.event.AbstractBroadcastDispatch.dispatch(Abstra...
Able to create release build but when I add dexguard and try to create a release build its throws the following error [CODE] my config Gradle 7.4.2 Kotlin: 1.5.31 Groovy: 3.0.9 Ant: Apache Ant(TM) version 1.10.11 compiled on July 10 2021 JVM: 11.0.8 (OpenLogic 11.0.8+0-adhoc.centos.jdk11u) OS: Linux 4.9.32-15.41.amzn1....
java|android|gradle
0
2022-05-10T09:49:47.337Z
2,022
5
9
1
1,906
0
406
63
3
1
true
true
false
false
false
false
zero
72,184,173
Firebase Realtime Database do broadcast operation even when there is no subscriber
<p>Recently I have came across with problem that Firebase Realtime Database generates too much download traffic.</p> <p>In my application I only write to the database using:</p> <pre><code>database.child(&quot;child&quot;).setValue(value) </code></pre> <p>While researching the problem with Firebase's <a href="https://f...
Recently I have came across with problem that Firebase Realtime Database generates too much download traffic. In my application I only write to the database using: [CODE] While researching the problem with Firebase's database profiler I found that there is listener_broadcast operation on each write operation and that b...
android|firebase|firebase-realtime-database
1
2022-05-10T09:52:05.770Z
2,022
5
9
1
50
0
517
82
3
1
true
true
false
false
false
false
low
72,184,207
Is it possible to enable android multi-user from adb?
<p>As stated in the <a href="https://source.android.com/devices/tech/admin/multi-user#applying_the_overlay" rel="nofollow noreferrer">official document</a>, it is possible to enable android multiple user feature at build time, but there is no document about enabling it on an exiting android image. Is there a way to ena...
As stated in the official document , it is possible to enable android multiple user feature at build time, but there is no document about enabling it on an exiting android image. Is there a way to enable multi-user on an existing device (e.g. using adb) considering that root access is available?
android|android-source|android-multiple-users|android-managed-profile
0
2022-05-10T09:54:51.020Z
2,022
5
9
1
422
2
296
53
4
0
false
false
false
false
false
false
zero
72,184,208
Timer based on Handler stops, Android, Kotlin
<p>I use <code>Handler</code> for creating a timer in a Widget. I use the recommended constructor, i.e. passing a Looper to it.</p> <pre><code> private val updateHandler = Handler(Looper.getMainLooper()) @RequiresApi(Build.VERSION_CODES.Q) private val runnable = Runnable { updateDisplay() } ...
I use Handler for creating a timer in a Widget. I use the recommended constructor, i.e. passing a Looper to it. [CODE] The TIMER MS is set to 3000 ms. The timer runs fine for a while and execute the given code. However after a random time elapsed the timer stops working and no more execution of the given code happens. ...
android|kotlin|handler
0
2022-05-10T09:54:54.823Z
2,022
5
9
1
137
2
539
45
3
1
true
false
false
false
false
false
zero
72,184,274
How to solve this Exception : Unable to instantiate activity ComponentInfo {...} Didn't find class "..." on path: DexPathList
<p>I'm trying to build use default Empty Activity file at Android Studio. (API 31)</p> <p>I already search around the web, but I can't find solution for my error.</p> <p>Here is error message.</p> <p>2022-05-10 16:14:56.487 1708-1708/? E/AndroidRuntime: FATAL EXCEPTION: main Process: com.example.myapplication, PID: 170...
I'm trying to build use default Empty Activity file at Android Studio. (API 31) I already search around the web, but I can't find solution for my error. Here is error message. 2022-05-10 16:14:56.487 1708-1708/? E/AndroidRuntime: FATAL EXCEPTION: main Process: com.example.myapplication, PID: 1708 java.lang.RuntimeExcep...
android
0
2022-05-10T10:00:07.470Z
2,022
5
10
1
132
1
2,769
125
1
2
true
false
false
false
false
false
zero
72,184,301
How do I validate my SSL certificate from a non-HTTP source in Android?
<p>I don't understand those TrustManager classes and I thought it would be possible to validate against already installed root certificates on the device, but it looks like I have to install them by myself in the app.</p> <p>I am obtaining my certificates from an external device in a raw ByteArray data and I want to cr...
I don't understand those TrustManager classes and I thought it would be possible to validate against already installed root certificates on the device, but it looks like I have to install them by myself in the app. I am obtaining my certificates from an external device in a raw ByteArray data and I want to create a Cer...
android|kotlin|security|ssl|ssl-certificate
1
2022-05-10T10:02:39.280Z
2,022
5
10
1
73
0
487
71
5
0
false
true
false
false
false
false
low
72,184,399
Android Room parse before inserting
<p>Imagine receiving from an endpoint an object like this</p> <pre class="lang-kotlin prettyprint-override"><code>data class Foo( val name: String, val start: String, val end: String ) </code></pre> <p>where the properties <code>start</code> and <code>end</code> are string in the format of &quot;00:00:00&qu...
Imagine receiving from an endpoint an object like this [CODE] where the properties start and end are string in the format of &quot;00:00:00&quot; to represent the hours, minutes and second from midnight. I need to save this object in a Room table but with start and end parsed as Int instead of string. The solution I re...
android|kotlin|android-room
0
2022-05-10T10:09:48.570Z
2,022
5
10
1
33
1
445
35
3
2
true
false
false
false
false
false
zero
72,184,401
PyQt6 on ChromeOS (Without dev) using pyqtdeploy?
<p>I wanna make an app that supports as many OS as possible(Windows, iOS, macOS, ChromeOS) so I'm trying out PyQt6 but also need it to work on a Chrome OS <strong>WITHOUT DEVELOPER MODE</strong>. With my experience with chromebooks, some apps in the play store downloaded on the phone can also be downloaded in the chrom...
I wanna make an app that supports as many OS as possible(Windows, iOS, macOS, ChromeOS) so I'm trying out PyQt6 but also need it to work on a Chrome OS WITHOUT DEVELOPER MODE . With my experience with chromebooks, some apps in the play store downloaded on the phone can also be downloaded in the chromebook. So how do I ...
operating-system|google-chrome-os|pyqt6|androidappsonchromeos|pyqtdeploy
1
2022-05-10T10:09:58.463Z
2,022
5
10
1
58
0
367
49
5
0
false
true
false
false
false
false
low
72,184,461
What is the difference between String? and String! in Kotlin
<p>I want to know the difference between String? and String! in Kotlin. I search on kotlinlang.org but did not find any information.</p>
I want to know the difference between String? and String! in Kotlin. I search on kotlinlang.org but did not find any information.
android|kotlin
0
2022-05-10T10:13:49.143Z
2,022
5
10
1
127
3
129
60
2
0
false
false
false
false
false
false
zero
72,184,471
Android Java Error: Cannot resolve symbol 'RestClientIO'
<p>Started learning Java. To better understand the work, I also study other people's codes. Development environment: Android Studio. Took an example:</p> <p>[JAVA] ....... a lot of code</p> <pre><code> public Operation getOperation(final Link link) throws IOException, WrongMethodException, HttpCodeException { ...
Started learning Java. To better understand the work, I also study other people's codes. Development environment: Android Studio. Took an example: [JAVA] ....... a lot of code [CODE] ....... a lot of code [/JAVA] There is an error in this method. Error: Cannot resolve symbol 'RestClientIO' Cleared the cache, didn't hel...
java|android
0
2022-05-10T10:14:48.673Z
2,022
5
10
1
17
0
351
56
2
1
true
true
false
false
false
false
zero
72,184,595
Showing alert box in abstract class
<p>Hey all I am very new in Android app development. Just a quick solution I have abstract base class. I want to display alert box in this abstract class but I cannot pass context in it due to which dialog is not shown no solution found on internet so far. Any sugessions from experts are highly apperciable My Abstract ...
Hey all I am very new in Android app development. Just a quick solution I have abstract base class. I want to display alert box in this abstract class but I cannot pass context in it due to which dialog is not shown no solution found on internet so far. Any sugessions from experts are highly apperciable My Abstract cla...
android|kotlin|android-alertdialog|abstract-class
0
2022-05-10T10:22:55.727Z
2,022
5
10
1
26
0
336
35
4
1
true
true
false
false
false
false
zero
72,184,682
May be the Application not created?
<p>I have some Apps where I use a static reference of the Application instance. That's usefull when I need to use context in some singleton Class that has application lifetime. Here an example:</p> <pre><code>public class MyApp extends Application { private static MyApp smApplication; public MyApp() {...
I have some Apps where I use a static reference of the Application instance. That's usefull when I need to use context in some singleton Class that has application lifetime. Here an example: [CODE] This works like a charm in the majority of the cases. But... I have a number of NullPointerException crashes reported in t...
android|android-application-class
0
2022-05-10T10:28:15.927Z
2,022
5
10
1
10
0
1,121
35
2
1
true
true
false
false
false
false
zero
72,184,699
Flutter keyboard makes screen jump down and shows part of the same view above the current view on Android device
<p>I am running an app built in Flutter on Pax A920 device with Android 7.1.2 installed.</p> <p>Whenever the keyboard appears, the screen jumps down, and shows parts of the current view above the screen. When I dismiss the keyboard, everything goes back to normal.</p> <p>This behaviour can be seen in the photo below. S...
I am running an app built in Flutter on Pax A920 device with Android 7.1.2 installed. Whenever the keyboard appears, the screen jumps down, and shows parts of the current view above the screen. When I dismiss the keyboard, everything goes back to normal. This behaviour can be seen in the photo below. Sorry for the imag...
android|flutter|android-layout|flutter-layout|pax
0
2022-05-10T10:29:26.397Z
2,022
5
10
1
111
0
793
112
5
0
false
true
false
false
false
false
zero
72,184,788
How can I get the android header again?
<p><a href="https://i.stack.imgur.com/f0GOE.png" rel="nofollow noreferrer">Hello professionals. I'm new to android studio. I lost the studio header .how can I get this header again.</a></p>
Hello professionals. I'm new to android studio. I lost the studio header .how can I get this header again.
android-studio
-1
2022-05-10T10:36:58.313Z
2,022
5
10
1
14
1
106
39
1
0
false
false
false
false
false
true
negative
72,184,795
Whenever I run my reactnative app, this configuration takes places?
<p>I am a beginner to reactnative and in my first app, i have this problem where it says your sdk tools are installed in the tools folder. However, it is again installing in new folder sdk-4 . and everytime i run my application it is taking a new folder to install all the sdk tools. Thanks</p>
I am a beginner to reactnative and in my first app, i have this problem where it says your sdk tools are installed in the tools folder. However, it is again installing in new folder sdk-4 . and everytime i run my application it is taking a new folder to install all the sdk tools. Thanks
android|reactjs|react-native|android-sdk-tools|android-sdk-manager
0
2022-05-10T10:37:12.163Z
2,022
5
10
1
23
0
287
67
5
0
false
true
false
false
false
false
zero
72,184,857
How do I implement a Scrollview for java?
<p>(I'm using Android IDE for this and I'm new to java)</p> <p>I made a layout for my emulator that works in portrait mode. But I want to know how to implement a Scrollview code so that my layout works in landscape as well. Must I add something to my layout, my code, or both? I added my code below</p> <pre><code>public...
(I'm using Android IDE for this and I'm new to java) I made a layout for my emulator that works in portrait mode. But I want to know how to implement a Scrollview code so that my layout works in landscape as well. Must I add something to my layout, my code, or both? I added my code below [CODE]
java|android
0
2022-05-10T10:41:03.907Z
2,022
5
10
1
18
0
295
41
2
1
true
true
false
false
false
false
zero
72,184,951
How reverse the data fetched with FirebaseUI- in adapter Android?
<p>I try to use the <strong>FirebaseUI-Realtime Database</strong> Android lib to simply display a data set in a viepager2 with recycler-view adapter</p> <p>When I get the data, I got the oldest data first, and i need to show the latest first . So I need a reverse order. How i can do it in RecyclerView adapter?</p> <p>M...
I try to use the FirebaseUI-Realtime Database Android lib to simply display a data set in a viepager2 with recycler-view adapter When I get the data, I got the oldest data first, and i need to show the latest first . So I need a reverse order. How i can do it in RecyclerView adapter? MainActivity.java [CODE] videoadapt...
java|android|firebase-realtime-database|firebaseui
0
2022-05-10T10:47:31.330Z
2,022
5
10
1
40
0
352
65
4
3
true
true
false
false
false
false
zero
72,184,984
Add a button when image or video loads in a webview
<p>I want to add a button when image or video loads in a WebView. Like this in Images given below.</p> <p><a href="https://i.stack.imgur.com/BJFOP.png" rel="nofollow noreferrer">See this</a></p> <p><a href="https://i.stack.imgur.com/AD2Hc.png" rel="nofollow noreferrer">See this</a></p>
I want to add a button when image or video loads in a WebView. Like this in Images given below. See this See this
android|webview|customization|add
0
2022-05-10T10:49:16.663Z
2,022
5
10
1
72
1
113
51
4
0
false
false
false
false
false
false
zero
72,184,991
Android bundletool: install on all devices with just one command
<p>Is there a way to install .apks build on multiple devices connected with my Mac using just one command?</p>
Is there a way to install .apks build on multiple devices connected with my Mac using just one command?
android|bundletool
0
2022-05-10T10:49:44.253Z
2,022
5
10
1
96
0
103
64
2
0
false
true
false
false
false
false
zero
72,185,093
How to get Value of String OnClick of a ViewList in Android Studio
<p>I am new to android studio.</p> <p>I am making an app that lists names of teachers and the subjects thought and then every person has a different class. The teacher names and subjects though are stored in a TreeMap.</p> <p>I am having difficulty as I want my app to feature sorts, so when outputted the positions of t...
I am new to android studio. I am making an app that lists names of teachers and the subjects thought and then every person has a different class. The teacher names and subjects though are stored in a TreeMap. I am having difficulty as I want my app to feature sorts, so when outputted the positions of teachers are chang...
android|onitemclick
0
2022-05-10T10:56:57.593Z
2,022
5
10
1
22
0
697
66
2
1
true
true
false
false
false
false
zero
72,185,175
Xamarin - Binding a Picker to MVVM command
<p>I'm trying to use the MVVM architecture on my Xamarin project but I can't quite understand it yet.</p> <p>I have two entities <code>CrCountry</code> and <code>CrCity</code> and I want the user to be able to pick a country and then based on that country select a city. I want also the picker for the city to be &quot;u...
I'm trying to use the MVVM architecture on my Xamarin project but I can't quite understand it yet. I have two entities CrCountry and CrCity and I want the user to be able to pick a country and then based on that country select a city. I want also the picker for the city to be &quot;unavaliable&quot; until the user pick...
c#|android|xamarin|mvvm|.net-5
0
2022-05-10T11:02:40.067Z
2,022
5
11
1
157
1
1,102
42
5
2
true
false
false
false
false
false
zero
72,185,198
Input dispatching timed out (Waiting to send non-key event because the touched window has not finished processing certain input events that were deliv
<p>Input dispatching timed out (Waiting to send non-key event because the touched window has not finished processing certain input events that were delivered to it over 500.0ms ago. Wait queue length: 7. Wait queue head age: 8630.5ms.) I'm getting this ANR from console and I couldn't understand Why?</p> <pre><code>Sup...
Input dispatching timed out (Waiting to send non-key event because the touched window has not finished processing certain input events that were delivered to it over 500.0ms ago. Wait queue length: 7. Wait queue head age: 8630.5ms.) I'm getting this ANR from console and I couldn't understand Why? [CODE] from next activ...
java|android|android-anr-dialog
0
2022-05-10T11:03:40.493Z
2,022
5
11
1
75
0
415
150
3
1
true
true
false
false
false
false
zero