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,846,121
Android Development: Fetch Task (or Reminders) from Google Calendar
<p>I am fiddling around with java and Android Studio. I managed to read from the Google Calendar, fetching Events using the ContentResolver from Google - all fine.</p> <pre><code> Cursor cursor = contentResolver.query( CalendarContract.Events.CONTENT_URI, new String[]{&quot;title&quot;, &quot...
I am fiddling around with java and Android Studio. I managed to read from the Google Calendar, fetching Events using the ContentResolver from Google - all fine. [CODE] Now I am trying the fetch Tasks as well, from the Google Calendar. When you're adding a new item to your calendar, instead of Events, you can also creat...
java|android|android-studio|google-calendar-api
1
2022-07-03T11:32:31.813Z
2,022
7
11
6
32
0
679
67
4
1
true
true
false
false
false
false
low
72,846,179
how to delete a single value using delete button in a calculator app?
<p>I am making an Android Calculator App. I want to delete an input instead of clearing the whole value. This is code for adding values</p> <pre><code>private void updateText(String value) { output = output + value; display.setText(output); } </code></pre> <p>How can I delete a single value using th...
I am making an Android Calculator App. I want to delete an input instead of clearing the whole value. This is code for adding values [CODE] How can I delete a single value using the delete button? strong text
java|android|android-studio
0
2022-07-03T11:40:16.097Z
2,022
7
11
6
38
1
208
69
3
1
true
false
false
false
false
false
zero
72,846,199
How to wait result from OKHTTP response without freezing app
<p>When I use CountDownLatch, the application freezes until the result is received, it is fashionable to avoid this?</p>
When I use CountDownLatch, the application freezes until the result is received, it is fashionable to avoid this?
android|kotlin|okhttp
0
2022-07-03T11:43:09.310Z
2,022
7
11
6
31
1
113
60
3
0
false
false
false
false
false
false
zero
72,846,237
Android real time graph plot with horizontal scroll
<p>I'm trying to implement a real time graph plot where x axis is the time and y axis is some value.I also want the graph to be horizontally scrollable and it should move with time.How should I go about implementing this in android studio.</p>
I'm trying to implement a real time graph plot where x axis is the time and y axis is some value.I also want the graph to be horizontally scrollable and it should move with time.How should I go about implementing this in android studio.
java|android-studio|kotlin|graph|android-graphview
0
2022-07-03T11:47:27.147Z
2,022
7
11
6
16
0
236
51
5
0
false
true
false
false
false
false
zero
72,846,263
How to send custom array of objects with post body?
<p>There is data classes <code>PlaylistInsertOperation</code>, <code>TrackId</code> and function <code>insertTracks</code> via Retrofit Interface.</p> <pre class="lang-kotlin prettyprint-override"><code>data class PlaylistInsertOperation( val tracks: List&lt;TrackId&gt;, ) data class TrackId( val id: String, ...
There is data classes PlaylistInsertOperation , TrackId and function insertTracks via Retrofit Interface. [CODE] When I send request, field diff equals the next string [CODE] But need to such string [CODE] How to tell gson or retrofit parse models without data class name?
android|kotlin|gson|retrofit
1
2022-07-03T11:51:44.893Z
2,022
7
11
6
64
2
272
51
4
3
true
false
false
false
false
false
low
72,846,330
How to use widget lists in ListView.builder?
<pre><code> class CardPage extends StatelessWidget { String title; String description; CardPage({Key key,this.title,this.description}) : super(key: key); @override Widget build(BuildContext context) { final ThemeData themeData = Theme.of(context); return Container( height: (108), child: C...
[CODE] This is my CardPage class. And this is my FavoritePage class [CODE] As you can see, i want to use widget.cardList in listView.builder but the error says: [CODE] I just want to create a favoritePage like there are a lot of cards and i wanted to paste it another page which name is favoritePage but i couldn't do th...
android|flutter|android-widget|flutter-dependencies|flutter-widget
1
2022-07-03T12:01:58.373Z
2,022
7
12
6
48
3
323
44
5
3
true
false
false
false
false
false
low
72,846,350
Android Studio - GradleSync error on CordovaLib for compileSdkVersion and AndroidMavenPlugin
<p>I have maked an android project by Cordova and Netbeans... and all work fine.</p> <p>Now I want to publish it on playstore and I have seen that to publish it I have to sign my app (<a href="https://developer.android.com/studio/publish/app-signing" rel="nofollow noreferrer">https://developer.android.com/studio/publis...
I have maked an android project by Cordova and Netbeans... and all work fine. Now I want to publish it on playstore and I have seen that to publish it I have to sign my app ( https://developer.android.com/studio/publish/app-signing )...following the topic, seems that the easier method is to import the project in Androi...
android|android-studio|cordova
0
2022-07-03T12:04:40.227Z
2,022
7
12
6
125
1
939
92
3
4
true
false
false
false
false
false
zero
72,846,512
How to make an android app that cuts/slices images, saves each pieces and then reassembles each piece in one (original) image
<p>I am a total beginner at android development. I want to make an android app like this (in the android studio if possible): An app that allows us to slice photos and make pieces with random straight lines (in any angle, any number of lines that we want), then able to save those pieces as separate files and remember t...
I am a total beginner at android development. I want to make an android app like this (in the android studio if possible): An app that allows us to slice photos and make pieces with random straight lines (in any angle, any number of lines that we want), then able to save those pieces as separate files and remember thei...
android|android-studio
0
2022-07-03T12:28:49.817Z
2,022
7
12
6
52
0
619
125
2
0
false
true
false
false
false
false
zero
72,846,522
How to Select specific tracks in Exoplayer latest release 2.18.0
<p>I have tried the code from exoplayer documentation, it works but when I fetch selected track it shows the default track which I already changed.</p> <pre><code>player.setTrackSelectionParameters( player.getTrackSelectionParameters() .buildUpon() .setOverrideForType( new TrackSelection...
I have tried the code from exoplayer documentation, it works but when I fetch selected track it shows the default track which I already changed. [CODE] The code I used before the latest release is: [CODE] This code worked perfectly. But from the latest release this code is not working. So i changed this with the above ...
android|android-studio|exoplayer|exoplayer2.x
1
2022-07-03T12:29:45.727Z
2,022
7
12
6
552
2
539
64
4
3
true
false
false
false
false
false
low
72,846,659
How to use animations in Android?
<p>I want to use button animations in my selection but I don't know how .I want to use animation in android studio is there any way?? I searched a lot in YouTube, but I couldn't find a way. Is there a special library or a special site?</p>
I want to use button animations in my selection but I don't know how .I want to use animation in android studio is there any way?? I searched a lot in YouTube, but I couldn't find a way. Is there a special library or a special site?
android|android-studio|android-layout
0
2022-07-03T12:51:31.460Z
2,022
7
12
6
60
2
232
33
3
0
false
false
false
false
false
false
zero
72,846,713
Create internal testing release Error : Unknown validation VALIDATE_APP_MESSAGE_VIDEO_NOT_PLAYABLE
<p>I've just updated my kotlin app and got this error message at Google Play Console when I tried to create another internal test version.</p> <p><a href="https://i.stack.imgur.com/ptWBb.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/ptWBb.png" alt="enter image description here" /></a></p> <p>There ...
I've just updated my kotlin app and got this error message at Google Play Console when I tried to create another internal test version. There have been many successful uploads so far until this error was encountered. Does anyone know what is causing this error and how to fix it? Thanks.
android|testing
0
2022-07-03T13:00:35.420Z
2,022
7
13
6
25
0
287
98
2
0
false
true
false
false
false
false
zero
72,846,731
How to get content URI for Android 12 for document files(pdf, doc, word)?
<p><strong>Sorry for the long post.</strong></p> <p>I want to upload different types of files to our server from Android using API.</p> <p>I am using the below code for file pick</p> <pre><code>Intent pickDocument = new Intent(Intent.ACTION_GET_CONTENT); pickDocument.addCategory(Intent.CATEGORY_OPENABLE); pickDocument....
Sorry for the long post. I want to upload different types of files to our server from Android using API. I am using the below code for file pick [CODE] And I am using the below class to get the file path from URI. [CODE] This code is working fine in Android 10 and below. But I am getting issue in Android 12 If I pick a...
android|android-file
2
2022-07-03T13:04:04.167Z
2,022
7
13
6
297
0
684
73
2
5
true
true
false
false
false
false
low
72,846,734
Why multipart retrofit with "image/*" get bad request?
<p>I want to post a Product with some details like name, desc, etc. and image too. But I got 400 bad request.</p> <pre><code>val namebody = name.toRequestBody(&quot;text/plain&quot;.toMediaType()) val priceBody = price.toRequestBody(&quot;text/plain&quot;.toMediaType()) val descriptionBody = description.toRequestBody(&...
I want to post a Product with some details like name, desc, etc. and image too. But I got 400 bad request. [CODE] [CODE] So after many tries, I have success to post image with retrofit but I have to change this line [CODE] to a spesific image format, example jpg, png. [CODE] And anyone knows why is this happen? And how...
android|kotlin|retrofit|multipartform-data|multipart
0
2022-07-03T13:04:16.500Z
2,022
7
13
6
66
0
387
54
5
4
true
true
false
false
false
false
zero
72,846,798
Scanning OCR on a Zebra TC52 with an Android firemonkey Delphi application
<p>I'm developing an Android application with Embarcadero RAD Studio 11 to deploy on a Zebra TC52. I'm trying to activate the OCR scanner by clicking a button on a screen.</p> <p>I have to read a 10 character number on a document. I tried to read about the zembra documentation but I couldn't find the bees to call in th...
I'm developing an Android application with Embarcadero RAD Studio 11 to deploy on a Zebra TC52. I'm trying to activate the OCR scanner by clicking a button on a screen. I have to read a 10 character number on a document. I tried to read about the zembra documentation but I couldn't find the bees to call in the intent H...
android|delphi|ocr|zebra-scanners
1
2022-07-03T13:13:52.803Z
2,022
7
13
6
90
0
355
74
4
0
false
true
false
false
false
false
low
72,846,847
Phone keyboard doesn't popup when I click on TextField Compose in DialogFragment
<p>Below is the code for custom TextField. I have used TextField in Fragment and DialogFragment. I am having some issues while using it in DialogFragment. The phone keyboard opens when I click on the TextField below when it is used in Fragment. But even though it focuses on the TextField, the keyboard doesn't pop up wh...
Below is the code for custom TextField. I have used TextField in Fragment and DialogFragment. I am having some issues while using it in DialogFragment. The phone keyboard opens when I click on the TextField below when it is used in Fragment. But even though it focuses on the TextField, the keyboard doesn't pop up when ...
android|textfield|dialogfragment
0
2022-07-03T13:20:31.543Z
2,022
7
13
6
97
2
356
80
3
1
true
false
false
false
false
false
zero
72,846,867
how to display .mkv with subtitles using better player or chewie in flutter?
<p>Currently, I have managed to display movies with the .mkv extension, but these movies have several languages ​​or subtitles, in other video players there is the ability to switch between audio and subtitles, but nothing is displayed in my video player. It should be noted that I can add audio or subtitles to the vide...
Currently, I have managed to display movies with the .mkv extension, but these movies have several languages ​​or subtitles, in other video players there is the ability to switch between audio and subtitles, but nothing is displayed in my video player. It should be noted that I can add audio or subtitles to the video, ...
flutter|mkv|vlc-android
1
2022-07-03T13:24:44.327Z
2,022
7
13
6
114
0
452
76
3
1
true
true
false
false
false
false
low
72,846,984
How to recognize users from a unique custom store listing URL?
<p>I want to create an app for different professions.</p> <p>Each user will receive a <a href="https://support.google.com/googleplay/android-developer/answer/9867158?hl=en#zippy=%2Cwhat-you-can-customize" rel="nofollow noreferrer">unique custom store listing URL</a> and will see relevant app info in PlayStore (Like app...
I want to create an app for different professions. Each user will receive a unique custom store listing URL and will see relevant app info in PlayStore (Like app name, description etc). Then I need to recognize the user in the app and use the user's API (Check screenshot below) to display relevant UI, how can I do so? ...
android|google-play
0
2022-07-03T13:44:40.033Z
2,022
7
13
6
44
0
421
62
2
0
false
true
false
false
false
false
zero
72,847,010
Problem in adding cmd-line tools to VS Code for flutter setup
<p><a href="https://i.stack.imgur.com/Re4Y7.png" rel="nofollow noreferrer">enter image description here</a> <a href="https://i.stack.imgur.com/LnRK5.png" rel="nofollow noreferrer">enter image description here</a></p> <p>I am facing a problem in adding cmd-line tools to vs code for flutter setup. I set the path also to ...
enter image description here enter image description here I am facing a problem in adding cmd-line tools to vs code for flutter setup. I set the path also to the environment variables but it didn't work.
android|flutter|dart|visual-studio-code
0
2022-07-03T13:48:26.750Z
2,022
7
13
6
21
1
203
61
4
0
false
false
false
false
false
false
zero
72,847,135
How do you put a html + CSS + JS playground into your app
<p>I need to put a html + CSS + Js playground into an android studio app (using kotlin)</p> <p>I have no idea how to do it and I haven't found anything about on the internet</p>
I need to put a html + CSS + Js playground into an android studio app (using kotlin) I have no idea how to do it and I haven't found anything about on the internet
android|android-studio|kotlin|android-webview
0
2022-07-03T14:06:35.677Z
2,022
7
14
6
29
1
163
57
4
0
false
false
false
false
false
false
zero
72,847,137
Why gradle gives resolve warning on implementing slider dependency and does not work?
<pre><code>dependencies { implementation 'androidx.appcompat:appcompat:1.4.2' implementation 'com.google.android.material:material:1.6.1' implementation 'com.facebook.shimmer:shimmer:0.5.0' implementation 'com.github.smarteist:autoimageslider:1.1.1' implementation 'androidx.constraintlayout:constra...
[CODE] In the above code I have implemented a depedency for auto slider but on sync gradle build is successfull but give one warning is that Failed to resolve: com.github.smarteist:autoimageslider:1.1.1&quot; and I am not able to use <com.smarteist.autoimageslider.SliderView></com.smarteist.autoimageslider.SliderView>
java|android|android-studio|android-layout|firebase-realtime-database
0
2022-07-03T14:06:51.390Z
2,022
7
14
6
20
0
319
85
5
1
true
true
false
false
false
false
zero
72,847,231
How to stop loading data from realtime database before the start of the activity?
<p>I know that the realtime database is of asynchronous type. But is there any way to stop loading data before the start of the activity. I have lot of data that these activities loads, which is not required. I want to decrease the usage of loading realtime database data. Even if I am wrong please correct me.</p> <p>Th...
I know that the realtime database is of asynchronous type. But is there any way to stop loading data before the start of the activity. I have lot of data that these activities loads, which is not required. I want to decrease the usage of loading realtime database data. Even if I am wrong please correct me. This is the ...
android|kotlin|firebase-realtime-database
0
2022-07-03T14:19:46.123Z
2,022
7
14
6
41
0
333
81
3
1
true
true
false
false
false
false
zero
72,847,257
requestPinAppWidget with arguments
<p>I am using:</p> <pre><code> val bundle = Bundle() bundle.putString(&quot;id&quot;, item.id) appWidgetManager.requestPinAppWidget(provider, bundle, pendingIntent) </code></pre> <p>To pin widget. I want to pass bundle with argument (some id)</p> <p>But when configuration activity is launched, the bundle is ...
I am using: [CODE] To pin widget. I want to pass bundle with argument (some id) But when configuration activity is launched, the bundle is empty [CODE] How to make it work?
android|android-widget
0
2022-07-03T14:23:57.223Z
2,022
7
14
6
22
0
172
34
2
2
true
true
false
false
false
false
zero
72,847,299
I'm getting a null value of a child in firebase
<p>Here's the code of getting value of level id:</p> <pre><code>DatabaseReference reference = FirebaseDatabase.getInstance().getReference().child(&quot;Users&quot;).child(&quot;levelId&quot;); reference.addValueEventListener(new ValueEventListener() { @Override public void onDataChange(@androidx.annotation.Non...
Here's the code of getting value of level id: [CODE] This is my database snapshot and I want to get &quot;levelId&quot; and &quot;userId&quot; from this table.
android|firebase|firebase-realtime-database
0
2022-07-03T14:28:53.233Z
2,022
7
14
6
25
1
159
47
3
1
true
false
false
false
false
false
zero
72,847,300
Android webview to bitmap but hardware accelerated
<p><strong>TL;DR:</strong> What is the hardware accelerated replacement of this code?</p> <pre><code> myBitmap = Bitmap.createBitmap(1280, 720, Bitmap.Config.ARGB_8888); myWebView.layout(0, 0, 1280, 720); myWebView.setDrawingCacheEnabled(true); myWebView.buildDrawingCache(); ca...
TL;DR: What is the hardware accelerated replacement of this code? [CODE] Detail: I am trying to get webView content to unity. I am using int array to do that job. I succeeded with webView.draw . Don't worry about onCreate function. I know it is so messy. [CODE] . And this function is requested from unity. I took the co...
android|webview|hardware-acceleration
1
2022-07-03T14:28:53.543Z
2,022
7
14
6
74
0
2,088
50
3
5
true
true
false
false
false
false
low
72,847,330
loop for change button value when clicked
<p>i'm trying to use a loop to change the value of my button, but when i run the app and click in the button, he just changes one time and the button stucks, like it's not reseting the button when gets to the last value.</p> <p>There are only 3 options in the button (Normal, Repeating, Shuffle)</p> <p>It may be a compl...
i'm trying to use a loop to change the value of my button, but when i run the app and click in the button, he just changes one time and the button stucks, like it's not reseting the button when gets to the last value. There are only 3 options in the button (Normal, Repeating, Shuffle) It may be a completely dumb questi...
android|loops|android-studio|kotlin
0
2022-07-03T14:34:01.340Z
2,022
7
14
6
30
1
369
41
4
1
true
false
false
false
false
false
zero
72,847,354
Android Java: Proxy-App without Port-Forwarding
<p>I have to create a simple rotating proxy application where 100 requests get evenly distributed to 10 devices. I've got the following structure:</p> <ul> <li>WebServer with a Java-SocketServer running. All Android devices are connected to this Socket-Server to be able to know which devices are currently online and fo...
I have to create a simple rotating proxy application where 100 requests get evenly distributed to 10 devices. I've got the following structure: WebServer with a Java-SocketServer running. All Android devices are connected to this Socket-Server to be able to know which devices are currently online and for determining wh...
java|android|sockets|proxy|serversocket
0
2022-07-03T14:36:47.847Z
2,022
7
14
6
30
0
1,311
47
5
2
true
true
false
false
false
false
zero
72,847,377
How to add Compiler Argument in Android app?
<p>I'm using Compose and some methods require the <code>@OptIn(ExperimentalFoundationApi::class)</code> annotation. <br/> The thing is that the Android Studio keeps showing a warning in this annotation with the following message: <em>This annotation should be used with the compiler argument '-opt-in=kotlin.RequiresOptI...
I'm using Compose and some methods require the @OptIn(ExperimentalFoundationApi::class) annotation. The thing is that the Android Studio keeps showing a warning in this annotation with the following message: This annotation should be used with the compiler argument '-opt-in=kotlin.RequiresOptIn' . The code works normal...
android|kotlin|gradle
1
2022-07-03T14:39:00.443Z
2,022
7
14
6
73
1
418
44
3
0
false
false
false
false
false
false
low
72,847,400
How to clear WebView video cache after reload?
<p>Helo! I have found nearly every answer I could found, but no one worked. I want to clear the video cache after I reload WebView, which means after reload, the WebView should fetch the video again from the website.But I found after reload, the WebView always use the cached video. The Code like this:</p> <pre><code>cl...
Helo! I have found nearly every answer I could found, but no one worked. I want to clear the video cache after I reload WebView, which means after reload, the WebView should fetch the video again from the website.But I found after reload, the WebView always use the cached video. The Code like this: [CODE] Because the v...
android|webview
0
2022-07-03T14:41:51.960Z
2,022
7
14
6
31
0
567
46
2
1
true
true
false
false
false
false
zero
72,847,493
How do we just recreate the database when I modify tables in sqldelight on Android
<p>I was just trying out <a href="https://cashapp.github.io/sqldelight/android_sqlite/" rel="nofollow noreferrer">Sqldelight on Android</a> but can't seem to figure out an easy way to just drop and recreate the db on device when I've modified a table (or even added / deleted a new table).</p> <p>The docs seems to indic...
I was just trying out Sqldelight on Android but can't seem to figure out an easy way to just drop and recreate the db on device when I've modified a table (or even added / deleted a new table). The docs seems to indicate we need to create a <prev_version_number>.sqm file, which I did but just left it empty as I'd like ...
android|database-migration|sqldelight
1
2022-07-03T14:54:30.210Z
2,022
7
14
6
45
0
720
82
3
1
true
true
false
false
false
false
low
72,847,498
How to download image on series.naver
<p>I want to download comics on series.naver, but their app doesn't let me take screenshots or use any software. Is there any way to download it?</p>
I want to download comics on series.naver, but their app doesn't let me take screenshots or use any software. Is there any way to download it?
android|ios|windows
0
2022-07-03T14:55:43.403Z
2,022
7
14
6
30
0
142
37
3
0
false
true
false
false
false
false
zero
72,847,514
Update all other tabs in ViewPager
<p>I am building TODO list app using MVVM architecture. I have view pager with 3 tabs: Daily, Weekly, and Monthly.</p> <p>When I edit a task from daily tab and save it to the database,I can see the updated task in the daily tab and it's working perfectly.</p> <p>The problem is when I move to the Weekly and Monthly tabs...
I am building TODO list app using MVVM architecture. I have view pager with 3 tabs: Daily, Weekly, and Monthly. When I edit a task from daily tab and save it to the database,I can see the updated task in the daily tab and it's working perfectly. The problem is when I move to the Weekly and Monthly tabs ,where the task ...
java|android|android-fragments|android-viewpager|android-mvvm
0
2022-07-03T14:58:07.167Z
2,022
7
14
6
23
0
841
34
5
0
false
true
false
false
false
false
zero
72,847,591
Add SwipeToRefresh to RecyclerView Android
<p>Have activity page with following code:</p> <pre><code>&lt;androidx.swiperefreshlayout.widget.SwipeRefreshLayout android:id=&quot;@+id/swipeRefreshLayout&quot; android:layout_width=&quot;match_parent&quot; android:layout_height=&quot;wrap_content&quot; android:background=&quot;#00FFFF...
Have activity page with following code: [CODE] On my main activity.kt file, I have the following code but I am unsure where i need to put listenings etc. as I didn't write this part of the code; [CODE] I'm really struggling where to add additional &quot;SwipeRefreshLayout&quot; code into the above. I have tried to foll...
android|kotlin|android-recyclerview
1
2022-07-03T15:09:23.933Z
2,022
7
15
6
52
1
415
42
3
2
true
false
false
false
false
false
low
72,847,731
show a map with the current location of the user and the stations downloaded from the server
<p>good morning everyone i have a problem with a fragment class. Specifically, I want to show the user's current location and the location of different train stations downloaded from the server. My code is:</p> <pre><code>public class MapsLine extends Fragment implements OnMapReadyCallback { private static fina...
good morning everyone i have a problem with a fragment class. Specifically, I want to show the user's current location and the location of different train stations downloaded from the server. My code is: [CODE] Basically after the user gives the permissions, my application shows the current position of the user, but do...
java|android|android-studio|google-maps-android-api-2
1
2022-07-03T15:26:52.737Z
2,022
7
15
6
34
0
667
92
4
1
true
true
false
false
false
false
low
72,847,785
How to insert an ArrayList of strings into mongodb using Java
<p>I'm pretty new to using MongoDB and databases in general. I have an ArrayList, and I want to create a document that stores the list of strings into a document in MongoDB when I press a button.</p> <p>To &quot;connect&quot; to MongoDB I currently have</p> <pre class="lang-Java prettyprint-override"><code> MongoCli...
I'm pretty new to using MongoDB and databases in general. I have an ArrayList, and I want to create a document that stores the list of strings into a document in MongoDB when I press a button. To &quot;connect&quot; to MongoDB I currently have [CODE] This is how I've written the ArrayList, which just contains a single ...
java|android|mongodb
0
2022-07-03T15:34:28.160Z
2,022
7
15
6
32
0
519
61
3
3
true
true
false
false
false
false
zero
72,847,788
Paging3 : Recycler View blinking and some items move in position after getting data from RemoteMediator
<p>I am building a movies app which uses Paging3 to page from the network and from a local database at the same time using Remote Mediator. <br /> which gets the data from TMDB api and save them to room database. <br /></p> <p>But I am experiencing some blinking or flickers in the recycler view <br />when I scroll dow...
I am building a movies app which uses Paging3 to page from the network and from a local database at the same time using Remote Mediator. which gets the data from TMDB api and save them to room database. But I am experiencing some blinking or flickers in the recycler view when I scroll down some items change their posit...
android|kotlin|paging|android-paging-3
1
2022-07-03T15:34:35.810Z
2,022
7
15
6
104
1
831
103
4
7
true
false
false
false
false
false
low
72,847,948
changing value of a LiveData on click of button only. But the observer's onChange is getting called even on onCreateView of fragment in Kotlin Android
<p>I have a LiveData in my ViewModel:-</p> <pre><code>private val _toastMessage = MutableLiveData&lt;Long&gt;() val toastMessage get() = _toastMessage </code></pre> <p>And this is the only way I am changing it's value(on click of a submit button in the fragment):-</p> <pre><code>fun onSubmitClicked(&lt;params&gt;){...
I have a LiveData in my ViewModel:- [CODE] And this is the only way I am changing it's value(on click of a submit button in the fragment):- [CODE] And in the fragment, I have an observer for this LiveData:- [CODE] Ideally, I am expecting the onChange of this Observer to be called only on clicking the submit button on m...
android|kotlin|android-fragments|viewmodel|android-livedata
0
2022-07-03T15:54:21.390Z
2,022
7
15
6
34
1
458
150
5
3
true
false
false
false
false
false
zero
72,848,007
Android Notification: How to add action buttons as icons instead of texts in the notification?
<p>I have a foreground service running that shows a notification. I want to add three action buttons in the notification.</p> <p><strong>I want those buttons to be shown as icons, not texts.</strong> I have seen other apps with notification that show the buttons as icons(image) in the notification without text, so this...
I have a foreground service running that shows a notification. I want to add three action buttons in the notification. I want those buttons to be shown as icons, not texts. I have seen other apps with notification that show the buttons as icons(image) in the notification without text, so this is possible. I also know a...
android-studio|android-notifications|foreground-service
0
2022-07-03T16:01:14.533Z
2,022
7
16
6
63
0
503
94
3
1
true
true
false
false
false
false
zero
72,848,045
deleting item in sharedPreferences from recyclerView adapter
<p>i tried to delete an item in sharedPreferences, in recyclerView adapter. but that item doesn't disappear till I go back from the activity and come back. I need it to disappear soon after being deleted.</p> <p><strong>Method</strong></p> <pre><code>public boolean RemoveFromWantToRead(AllBooksActivityModel book) { ...
i tried to delete an item in sharedPreferences, in recyclerView adapter. but that item doesn't disappear till I go back from the activity and come back. I need it to disappear soon after being deleted. Method [CODE] This is how I tried to delete an item. [CODE]
java|android-studio|android-recyclerview|sharedpreferences
0
2022-07-03T16:06:22.837Z
2,022
7
16
6
37
0
261
60
4
2
true
true
false
false
false
false
zero
72,848,137
android realm listener for a specific model
<p>I have two realm models, <code>CallLogModel</code> and <code>MessageModel</code>. I want to update a ListView whenever there is a change in my <code>CallLogModel</code> collection. I'm using the following code to do so,</p> <pre><code> private void setupRealmListener() { realm = Realm.getDefaultInstance(); ...
I have two realm models, CallLogModel and MessageModel . I want to update a ListView whenever there is a change in my CallLogModel collection. I'm using the following code to do so, [CODE] The problem with this code is that, it calls the populateList() function when it detects a change in any of my models(both CallLogM...
android|database|realm
0
2022-07-03T16:21:55.273Z
2,022
7
16
6
19
0
453
43
3
1
true
true
false
false
false
false
zero
72,848,141
Google Maps not getting exact location on Android
<p>I'm making an application in Android (with Kotlin) that requires Google Maps services. When a button is pressed, it should locate me. However it is not accurate at all.</p> <p>I use this version of Google Maps:</p> <pre><code>implementation 'com.google.android.gms:play-services-maps:18.0.2' implementation 'com.googl...
I'm making an application in Android (with Kotlin) that requires Google Maps services. When a button is pressed, it should locate me. However it is not accurate at all. I use this version of Google Maps: [CODE] Another versions: Android Studio Chipmunk 2021.2.1 Patch 1 Tested with: Xiaomi Redmi Note 7 and Xiaomi Litte ...
android|kotlin|google-maps|maps
0
2022-07-03T16:22:19.280Z
2,022
7
16
6
94
0
374
49
4
2
true
true
false
false
false
false
zero
72,848,312
Migrating native ios/android apps to expo/eas
<p>I am migrating a native ios/android app to expo and eas and I am not sure how to handle the app credentials/signing (Distribution Certificate, Provisioning Profiles, etc) for the new expo app. Can I use new app credentials (and let expo/eas generate them), if I use new credentials will users be able to update their ...
I am migrating a native ios/android app to expo and eas and I am not sure how to handle the app credentials/signing (Distribution Certificate, Provisioning Profiles, etc) for the new expo app. Can I use new app credentials (and let expo/eas generate them), if I use new credentials will users be able to update their app...
android|ios|react-native|expo|eas
0
2022-07-03T16:48:51.180Z
2,022
7
16
6
29
0
322
45
5
0
false
true
false
false
false
false
zero
72,848,318
How to change the text of a textView after a button is clicked?
<p>I tried to setup a pendingIntent which evokes the method &quot;shrinkTheNumber()&quot; of the class &quot;shrinkNumber.java&quot; after the button is clicked.</p> <p><strong>The Problem is that at the point of envoking that method i get the following error:</strong></p> <p><em>Cannot resolve constructor 'Intent(andr...
I tried to setup a pendingIntent which evokes the method &quot;shrinkTheNumber()&quot; of the class &quot;shrinkNumber.java&quot; after the button is clicked. The Problem is that at the point of envoking that method i get the following error: Cannot resolve constructor 'Intent(android.content.Context, void) com.example...
java|android|android-button
0
2022-07-03T16:49:46.557Z
2,022
7
16
6
50
1
627
63
3
2
true
false
false
false
false
false
zero
72,848,324
Unresolved reference: moveFocus
<p>I'm using jetpack compose with kotlin to my current project, but I'm having this wired problem. For my OutLinedTextField I'm using <code>ImeAction.Search</code> but for the action, I cannot hide my keyboard.</p> <pre><code>keyboardActions = KeyboardActions(onSearch = { FocusManager.mo...
I'm using jetpack compose with kotlin to my current project, but I'm having this wired problem. For my OutLinedTextField I'm using ImeAction.Search but for the action, I cannot hide my keyboard. [CODE] I cannot access moveFocus the error says Unresolved reference: moveFocus I have no idea.
android|kotlin|android-jetpack-compose|android-jetpack
0
2022-07-03T16:50:33.017Z
2,022
7
16
6
42
1
290
31
4
1
true
false
false
false
false
false
zero
72,848,388
NullPointerException in Intent.getIntent().getExtras()
<ul> <li>I am using Intent to pass names(ArrayList) from one activity to another.</li> <li>I called the getIntent() method in the second activity's onCreate() method.</li> <li>want to use passed names(ArrayList) inside my own functions but it is <strong>out of scope</strong></li> </ul> <pre><code> protected void onC...
I am using Intent to pass names(ArrayList) from one activity to another. I called the getIntent() method in the second activity's onCreate() method. want to use passed names(ArrayList) inside my own functions but it is out of scope [CODE] Want to use names in this: [CODE] namesList.get(0) is out of scope when Bundle li...
android|android-intent|android-activity
0
2022-07-03T16:59:57.053Z
2,022
7
16
6
29
1
541
54
3
2
true
false
false
false
false
false
zero
72,848,451
How to run react-native app on emulator after assembling release apk?
<p>My react-native application used to work and run normally on an emulator. Then I generated .apk file. Since this step, I cannot run my app on an emulator.</p> <p>I get these errors.</p> <pre><code>Task :app:installDebug FAILED Execution failed for task ':app:installDebug'. </code></pre> <p>I tried to do</p> <pr...
My react-native application used to work and run normally on an emulator. Then I generated .apk file. Since this step, I cannot run my app on an emulator. I get these errors. [CODE] I tried to do [CODE] This didn't help me. So my question. How to run again my project?
android|react-native
0
2022-07-03T17:08:47.810Z
2,022
7
17
6
26
0
268
69
2
2
true
true
false
false
false
false
zero
72,848,512
Dialog AnimateVisibility with jetpack compose
<p>I am trying to use AnimateVisibility in jetpack compose in custom Dialog but nothing seems to work. Then i try also to use alpha AnimateFloatAsState with non result again. Why is nothing of thiw working on a dialog?</p>
I am trying to use AnimateVisibility in jetpack compose in custom Dialog but nothing seems to work. Then i try also to use alpha AnimateFloatAsState with non result again. Why is nothing of thiw working on a dialog?
android-jetpack-compose
0
2022-07-03T17:18:31.183Z
2,022
7
17
6
37
0
215
45
1
0
false
true
false
false
false
false
zero
72,848,601
How to make a transparent area in drawable XML
<p>I'm trying to make a <code>drawable</code> like this :</p> <img src="https://i.stack.imgur.com/ySWSd.jpg" width="350"/> <p>Where the background is <em><strong>black</strong></em> and the center square shape is <em><strong>transparent</strong></em></p> <p>XML :</p> <pre><code>&lt;?xml version=&quot;1.0&quot; encoding...
I'm trying to make a drawable like this : Where the background is black and the center square shape is transparent XML : [CODE] How I can make the background take the black color and keep the square shape transparent. Thank you for your help.
android|xml|android-drawable
0
2022-07-03T17:31:54.350Z
2,022
7
17
6
34
0
242
46
3
1
true
true
false
false
false
false
zero
72,848,608
How to start an app with IR Remote on Android TV?
<p>I found a file in <code>system/usr/keylayout</code> called <code>Vendor_0001_Product_0001.kl</code> which is responsible for my remote buttons to work.</p> <p>And in other file I found a key code name <code>OPEN_NETFLIX</code> which opens Netflix app. I tried modifying a key by naming <code>OPEN_CHROME</code>, didn'...
I found a file in system/usr/keylayout called Vendor_0001_Product_0001.kl which is responsible for my remote buttons to work. And in other file I found a key code name OPEN_NETFLIX which opens Netflix app. I tried modifying a key by naming OPEN_CHROME , didn't work. Tried OPEN_GOOGLE_CHROME didn't work, tried CHROME_AP...
android|root|android-tv|android-5.1.1-lollipop
0
2022-07-03T17:34:19.743Z
2,022
7
17
6
52
0
401
49
4
0
false
true
false
false
false
false
zero
72,848,800
How to run a code block each Monday of the week and start of the month in Kotlin/Android
<p>I am working on my final year project where I have requirements to set/re-set some values on Firestore these would be Firebase Firestore APIs calls. and I need these two blocks of codes to be run one block each Monday at 12am and another each 1st day of the month at 12 am.</p> <p>I will really appreciate the senior...
I am working on my final year project where I have requirements to set/re-set some values on Firestore these would be Firebase Firestore APIs calls. and I need these two blocks of codes to be run one block each Monday at 12am and another each 1st day of the month at 12 am. I will really appreciate the seniors' help in ...
android|kotlin
0
2022-07-03T18:02:12.173Z
2,022
7
18
6
44
1
339
88
2
0
false
false
false
false
false
false
zero
72,848,863
how to add click listen on item in Auto-complete dropdown menu
<p><strong>I'm trying to make a dependent dropdowns..one list is dependent in second list</strong></p> <p>this is how I add the my string array to dropdown list</p> <pre><code>ArrayAdapter carMakeAdapter = new ArrayAdapter(getApplicationContext(), R.layout.dropdown_layout, getResources().getStringArray(R.array.car_make...
I'm trying to make a dependent dropdowns..one list is dependent in second list this is how I add the my string array to dropdown list [CODE] this is the method I try but not working [CODE]
java|android
0
2022-07-03T18:11:52.127Z
2,022
7
18
6
14
0
188
62
2
2
true
true
false
false
false
false
zero
72,848,880
How to i establish connection between an Android app and a dekstop application with real-time data sharing
<p>I am making a voice assistant in python which will take command from an Android app which will convert the users voice command to text but I am not getting any way to send that text to dekstop application</p> <p>First I thought of firebase but firebase do not support dekstop application ...</p> <p>Can anyone help</p...
I am making a voice assistant in python which will take command from an Android app which will convert the users voice command to text but I am not getting any way to send that text to dekstop application First I thought of firebase but firebase do not support dekstop application ... Can anyone help
python|android|database|communication
0
2022-07-03T18:14:34.517Z
2,022
7
18
6
17
0
300
106
4
0
false
true
false
false
false
false
zero
72,848,991
Scroll to top of RecyclerView using setOnClickListener
<p>I have this home button in top bar:</p> <pre><code>val activity: ImageButton =findViewById(R.id.activity) activity.setOnClickListener{ startActivity(Intent(this, ActivitySearch::class.java)) } </code></pre> <p>Instead of going to a new page, I want to be able to just put a &quot;to top&qu...
I have this home button in top bar: [CODE] Instead of going to a new page, I want to be able to just put a &quot;to top&quot; intent, I have tried to replace: [CODE] with [CODE] But this does not work, any ideas? I do have a RecyclerView in use so half way down, I want to be able to click the above button and it goes s...
android|android-studio|kotlin
0
2022-07-03T18:33:18.530Z
2,022
7
18
6
49
2
403
54
3
5
true
false
false
false
false
false
zero
72,849,107
Caling a clickListener inside a clickListener return error null object reference error
<p><strong>I'm getting the error [Attempt to invoke virtual method 'void android.widget.Button.setOnClickListener(android.view.View$OnClickListener)' on a null object reference] on running the below code and from Logcat I checked the error is at line when calling the setOnClickListener() on the button id &quot;problmBt...
I'm getting the error [Attempt to invoke virtual method 'void android.widget.Button.setOnClickListener(android.view.View$OnClickListener)' on a null object reference] on running the below code and from Logcat I checked the error is at line when calling the setOnClickListener() on the button id &quot;problmBtn&quot; at ...
java|android
0
2022-07-03T18:50:20.133Z
2,022
7
18
6
35
1
369
86
2
2
true
false
false
false
false
false
zero
72,849,211
How can we give custom adapter for Material Exposed Dropdown?
<p>I tried to give custom array Adapter in Material Exposed dropdown with image and text value. DropDown is shown perfectly but when I click on those dropdown item, the selected item value is set to something like @71232. And when I set it manually like this, Second time onwards the dropdown doesn't show up.</p> <pre><...
I tried to give custom array Adapter in Material Exposed dropdown with image and text value. DropDown is shown perfectly but when I click on those dropdown item, the selected item value is set to something like @71232. And when I set it manually like this, Second time onwards the dropdown doesn't show up. [CODE] [CODE]...
java|android
0
2022-07-03T19:06:18.333Z
2,022
7
19
6
39
0
357
61
2
3
true
true
false
false
false
false
zero
72,849,249
Notification bar is not a part of window
<p>There is a thin bar at the top of the phone screen's that shows battery and clock and notifications. When I try to run my app in fullscreen, this bar is purely black, meaning if I paint the whole window white with <code>SDL_RenderClear(renderer)</code> the color of bar does not change. So it means it is not a part o...
There is a thin bar at the top of the phone screen's that shows battery and clock and notifications. When I try to run my app in fullscreen, this bar is purely black, meaning if I paint the whole window white with SDL_RenderClear(renderer) the color of bar does not change. So it means it is not a part of the window rig...
android|sdl-2
0
2022-07-03T19:12:41.393Z
2,022
7
19
6
38
0
1,492
40
2
0
false
true
false
false
false
false
zero
72,849,283
Speechrecognizer not working for quiz app where After each correct/incorrect it moves to next one
<p>I want to build an app for quiz using a Speech recognizer it only works for 1 question what if I have a series of questions After each correct/incorrect it moves to the next one, which I already used for the loop here is not working code is not going inside the speechRecognizer.setRecognitionListener(new Recognition...
I want to build an app for quiz using a Speech recognizer it only works for 1 question what if I have a series of questions After each correct/incorrect it moves to the next one, which I already used for the loop here is not working code is not going inside the speechRecognizer.setRecognitionListener(new RecognitionLis...
java|android|android-studio
1
2022-07-03T19:20:03.637Z
2,022
7
19
6
27
0
432
97
3
1
true
true
false
false
false
false
low
72,849,305
Flutter doctor shows the message "cmdline-tools component is missing"
<p>when i run flutter doctor shows this <a href="https://i.stack.imgur.com/u0tYm.png" rel="nofollow noreferrer">message</a></p> <p>I installed flutter and android studio in d drive. Downloaded all tools that needed. <a href="https://i.stack.imgur.com/MQq1g.png" rel="nofollow noreferrer">android studio sdk tool</a></p> ...
when i run flutter doctor shows this message I installed flutter and android studio in d drive. Downloaded all tools that needed. android studio sdk tool android studio sdk Also added the variable in both system and user. user user system system I cannot understand why flutter doctor show that error.Can anyone help me?
flutter|android-studio|flutter-doctor
0
2022-07-03T19:24:46.423Z
2,022
7
19
6
39
1
320
69
3
0
false
false
false
false
false
false
zero
72,849,366
.DS_Store is not a directory error - Android Studio
<p>I'm working on an Android project from my Macbook and I'm getting the error</p> <pre><code>'/Users/myname/Desktop/AndroidLabs2/app/build/intermediates/packaged_res/debug/.DS_Store' is not a directory </code></pre> <p>I've added it to my .gitignore and to under Preferences&gt;File Types&gt;Ignored Files and Folders a...
I'm working on an Android project from my Macbook and I'm getting the error [CODE] I've added it to my .gitignore and to under Preferences>File Types>Ignored Files and Folders and yet when I run my project I'm still getting the same error. I know that .DS_Store is something that IOS automatically adds when you view the...
java|android|android-studio
0
2022-07-03T19:36:13.423Z
2,022
7
19
6
43
0
566
51
3
1
true
true
false
false
false
false
zero
72,849,392
How to remember that the scrollable content has been reached?
<p>I am new in Compose, and I am struggling with the <code>state</code> issue.</p> <p><strong>Let's consider such scenario:</strong></p> <ol> <li>The list of items is displayed.</li> <li>On the bottom of the screen there is a button which state should change if user reaches the bottom of the list.</li> <li>When button'...
I am new in Compose, and I am struggling with the state issue. Let's consider such scenario: The list of items is displayed. On the bottom of the screen there is a button which state should change if user reaches the bottom of the list. When button's state is changed, its text content and sharp is changed. When the sta...
android|android-jetpack-compose|lazycolumn
1
2022-07-03T19:39:15.483Z
2,022
7
19
6
38
1
535
61
3
1
true
false
false
false
false
false
low
72,849,537
How to playback HDR content using LibVLCSharp in Xamarin?
<p>I had no success on google, developer.android.com and LibVLCSharp/LibVLC.Android documentation. In the LibVLC documentation, it clearly states it supports HDR, but I found no examples in the git repos of how to enable HDR playback. Google and StackOverflow seemed to not have any snippets, documentation nor even ques...
I had no success on google, developer.android.com and LibVLCSharp/LibVLC.Android documentation. In the LibVLC documentation, it clearly states it supports HDR, but I found no examples in the git repos of how to enable HDR playback. Google and StackOverflow seemed to not have any snippets, documentation nor even questio...
android|xamarin.android|libvlc|libvlcsharp|hdr
0
2022-07-03T20:01:18.603Z
2,022
7
20
6
60
0
991
57
5
1
true
true
false
false
false
false
zero
72,849,555
how can i remove the remote user from recycle view perfacly using agora api in android studio
<pre><code> I am using agora api to create a online meeting but i am getting problem to manage the remote user. i have a problem that how can i remove the remote user perfactly so this the is the Abopter class for Recycle View in order to manage the local and remote users SO in the Adopter Class See the Remo...
[CODE] VideoActivity.Java Class to Integrate the Agora APi in Android App --> This is the Main class for Agora VIdeo call See the Hander Code And please if you understand so u can help me to solve that remote user management u can suggest some code for local user but i thing local user is perfactly manage all the issue...
java|android|android-studio|agora.io|agora-web-sdk-ng
0
2022-07-03T20:04:29.877Z
2,022
7
20
6
32
0
376
93
5
2
true
true
false
false
false
false
zero
72,849,566
current-place-picker-android won't populate the ListView
<p>I was following the codelab at this link: <a href="https://developers.google.com/codelabs/maps-platform/location-places-android?hl=en#0" rel="nofollow noreferrer">https://developers.google.com/codelabs/maps-platform/location-places-android?hl=en#0</a> and my listPlaces items don't appear (see the pictures below).</p...
I was following the codelab at this link: https://developers.google.com/codelabs/maps-platform/location-places-android?hl=en#0 and my listPlaces items don't appear (see the pictures below). I noticed that my code hangs at private void getCurrentPlaceLikelihoods() {} and skips the code inside the if (task.isSuccessful()...
android|google-maps-api-3|google-play-services
0
2022-07-03T20:07:05.333Z
2,022
7
20
6
21
0
545
56
3
1
true
true
false
false
false
false
zero
72,849,793
How to populate a recyclerView from a Room DB with filters?
<p>What you'll see below is how I get the data from a room database to be displayed in a recyclerView. What I would like to do is this:</p> <pre><code>@Query(&quot;SELECT * FROM item_table WHERE tag = :tag ORDER BY date ASC&quot;) fun fetchItemsByTags(tag: String): LiveData&lt;List&lt;ItemEntity&gt;&gt; </code></pr...
What you'll see below is how I get the data from a room database to be displayed in a recyclerView. What I would like to do is this: [CODE] I don't know how to model what I already do in a way to accomplish what I want to do. If someone could help me out that woudl be awesome! Dao: Repository: ViewModel Used in a fragm...
sql|kotlin|select|android-recyclerview|android-room
0
2022-07-03T20:45:57.517Z
2,022
7
20
6
25
0
346
59
5
1
true
true
false
false
false
false
zero
72,850,006
Flutter projects for native mobile and desktop web browser
<p>Can someone list a few projects on github where a Flutter application is being used as both:</p> <ol> <li>a mobile <strong>native</strong> application (not a PWA)</li> <li>as well as a normal web app viewable by desktop browsers?</li> </ol> <p>My goal is to create a single codebase where I can deploy native Android/...
Can someone list a few projects on github where a Flutter application is being used as both: a mobile native application (not a PWA) as well as a normal web app viewable by desktop browsers? My goal is to create a single codebase where I can deploy native Android/iOS mobile applications that can access device features ...
android|ios|flutter|flutter-web|flutter-native
0
2022-07-03T21:22:09.207Z
2,022
7
21
6
45
1
436
58
5
0
false
false
false
false
false
false
zero
72,850,117
When the phone screen is turned off for a long time, push notifications do not come, but the server informs us that they sent
<p>In our application we are using Google FireBase push-notifications.</p> <p>When the phone screen is turned off for a long time, push notifications do not come, but the server informs us that they sent.</p> <p>When the phone screen turns back on, those push notifications were received.</p> <p>Please help us, how we c...
In our application we are using Google FireBase push-notifications. When the phone screen is turned off for a long time, push notifications do not come, but the server informs us that they sent. When the phone screen turns back on, those push notifications were received. Please help us, how we can get push-notification...
android|push-notification|notifications|android-notifications
0
2022-07-03T21:42:41.230Z
2,022
7
21
6
19
0
374
125
4
0
false
true
false
false
false
false
zero
72,850,136
how to schedule new notification on receive another
<p>How can I do something like schedule a new alert when I receive an alert with flutter I tried using flutter_local_notifications but the screen doesn't wake up to do the action except when the phone is locked or when the notification is pressed is there any way to do it Thank you</p> <p>update: I tried this demo usi...
How can I do something like schedule a new alert when I receive an alert with flutter I tried using flutter_local_notifications but the screen doesn't wake up to do the action except when the phone is locked or when the notification is pressed is there any way to do it Thank you update: I tried this demo using the Awes...
android|ios|flutter|notifications
0
2022-07-03T21:46:31.847Z
2,022
7
21
6
58
0
432
51
4
1
true
true
false
false
false
false
zero
72,850,149
i have made one app to get ascii value of my character that i am going to put in my edit text but when i press my button to conver my app gets closed
<p>i have made one app to get ascii value of my character that i am going to put in my edit text. i have made the code as-&gt; `</p> <pre><code> protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); Button button=findViewById(R.id...
i have made one app to get ascii value of my character that i am going to put in my edit text. i have made the code as-> ` [CODE] but when i click my button my app gets closed. one more think when i make certain changes in my code and put String sipla=edittext.getText().toString(); in my button setonclick function it w...
java|android
-1
2022-07-03T21:49:39.523Z
2,022
7
21
6
25
1
403
149
2
1
true
false
false
false
false
true
negative
72,850,254
Wait for Bluetooth audio to start on Android
<p>We have a voice communications app that needs to play audio via bluetooth when a call starts.</p> <p>We are using <a href="https://developer.android.com/reference/android/media/AudioManager#startBluetoothSco()" rel="nofollow noreferrer">AudioManager.startBluetoothSco</a> to start the bluetooth, and we are waiting fo...
We have a voice communications app that needs to play audio via bluetooth when a call starts. We are using AudioManager.startBluetoothSco to start the bluetooth, and we are waiting for the ACTION_SCO_AUDIO_STATE_UPDATED broadcast intent to change to SCO_AUDIO_STATE_CONNECTED before playing audio. However waiting for AC...
android
3
2022-07-03T22:16:16.603Z
2,022
7
22
6
29
0
879
44
1
0
false
true
false
false
false
false
low
72,850,311
Keep text in BasicTextField on back navigation
<p>I have a BasicTextField in my jetpack compose function. When i click(user has input some text into the textfield by now) on a button to navigate to another composable in my NavHost, and from that new view click on back to the composable which i came from which has the textfield, the textfield is empty. I want to kee...
I have a BasicTextField in my jetpack compose function. When i click(user has input some text into the textfield by now) on a button to navigate to another composable in my NavHost, and from that new view click on back to the composable which i came from which has the textfield, the textfield is empty. I want to keep t...
android|kotlin|android-jetpack-compose|android-jetpack-navigation|android-jetpack-compose-text
1
2022-07-03T22:28:49.240Z
2,022
7
22
6
53
1
475
46
5
1
true
false
false
false
false
false
low
72,850,777
Is there a way that dynamic Link can carry values or intents can be included in them
<p>So I'm using kotlin to build an app of places and I have implemented a share button using dynamic links to share each place and when clicked, the app will open to that specific place, skipping the splash activity. It was working fine before but I modify my code to use one activity for opening all this different plac...
So I'm using kotlin to build an app of places and I have implemented a share button using dynamic links to share each place and when clicked, the app will open to that specific place, skipping the splash activity. It was working fine before but I modify my code to use one activity for opening all this different places ...
firebase|android-studio|kotlin|deep-linking|firebase-dynamic-links
1
2022-07-04T00:30:26.643Z
2,022
7
0
0
198
1
790
84
5
2
true
false
false
false
false
false
low
72,850,832
Output of the design is not as I did - Android Studio
<p>This is my UI page that I want it to appear on my physical emulator <a href="https://i.stack.imgur.com/oXD5r.png" rel="nofollow noreferrer">img1</a> and this is the expected output <a href="https://i.stack.imgur.com/4AsNs.png" rel="nofollow noreferrer">img2</a></p> <p><strong>Android UI Design Problem</strong> I rea...
This is my UI page that I want it to appear on my physical emulator img1 and this is the expected output img2 Android UI Design Problem I really don't know why that is happening I used actually Relativelayout and thanks in advance I don't use XML a lot so I'm kinda new to using UI stuff here in android and here is my X...
android|android-studio|android-layout
0
2022-07-04T00:47:07.427Z
2,022
7
0
0
43
1
334
53
3
1
true
false
false
false
false
false
zero
72,852,640
How to scan for Bluetooth Low Energy host and transmit data? (Android, Java)
<p>I have been trying to create a Java application for Android, that scans for a Bluetooth Low Energy host, connects to the host, and transfers data to and from the host.</p> <p>So far, I have not been able to pick up any devices when scanning, and after just connecting to an already bonded (Paired) host, no data makes...
I have been trying to create a Java application for Android, that scans for a Bluetooth Low Energy host, connects to the host, and transfers data to and from the host. So far, I have not been able to pick up any devices when scanning, and after just connecting to an already bonded (Paired) host, no data makes it throug...
java|android|bluetooth
0
2022-07-04T01:11:57.253Z
2,022
7
1
0
48
0
1,326
76
3
3
true
true
false
false
false
false
zero
72,850,990
how to do a swipeable on Material3 compose
<p>On the Material and Material2 <em>Compose</em> there was a <strong>SwipeableState</strong> and a <em>swipeable</em> option on the Modifier. But in Material3 this doesn't exist, at all. So how do you create a Swipeable in Material3? If anyone knows please share.</p>
On the Material and Material2 Compose there was a SwipeableState and a swipeable option on the Modifier. But in Material3 this doesn't exist, at all. So how do you create a Swipeable in Material3? If anyone knows please share.
android|kotlin|android-jetpack-compose
0
2022-07-04T01:34:22.267Z
2,022
7
1
0
85
1
226
42
3
0
false
false
false
false
false
false
zero
72,851,013
How to disable ask to join page in jitsi?
<p>I am using jitsi in my android studio app, but after creating meeting code it is redirecting to ask to join page, how can i disable that?</p> <p>URL serverURL;</p> <pre><code> try { serverURL = new URL(&quot;https://meet.jit.si/&quot;); JitsiMeetConferenceOptions defaultOptions = n...
I am using jitsi in my android studio app, but after creating meeting code it is redirecting to ask to join page, how can i disable that? URL serverURL; [CODE]
android|jitsi|jitsi-meet
0
2022-07-04T01:39:56.990Z
2,022
7
1
0
94
0
159
41
3
1
true
true
false
false
false
false
zero
72,851,015
Dependency injection with JobService subclass in MAUI application
<p>[for Android platform]</p> <p>Is there any way to inject dependencies into <code>JobService</code> subclass? In order to compile <code>JobService</code> subclass must not contain constructor with parameters and from the <a href="https://docs.microsoft.com/en-us/xamarin/android/platform/android-job-scheduler#creating...
[for Android platform] Is there any way to inject dependencies into JobService subclass? In order to compile JobService subclass must not contain constructor with parameters and from the documentation you can only use SetExtras to send some simple data to it. So what should I do in order to use a service that is in a D...
c#|android|.net|xamarin|maui
2
2022-07-04T01:40:32.613Z
2,022
7
1
0
109
1
385
65
5
0
false
false
false
false
false
false
low
72,851,258
Jetpack compose from expanded bottomsheet to fullscreen
<p>Want to achieve something like in gif below using Jetpack Compose, does anyone know best soulution for this, used bottom sheet, but couldnt convert it to fullscreen <a href="https://miro.medium.com/max/304/1*lZTBcYUYb8eB65x_7bWbjw.gif" rel="nofollow noreferrer">https://miro.medium.com/max/304/1*lZTBcYUYb8eB65x_7bWbj...
Want to achieve something like in gif below using Jetpack Compose, does anyone know best soulution for this, used bottom sheet, but couldnt convert it to fullscreen https://miro.medium.com/max/304/1*lZTBcYUYb8eB65x_7bWbjw.gif
android|kotlin|android-animation|android-jetpack-compose
0
2022-07-04T02:33:32.490Z
2,022
7
2
0
218
1
225
55
4
0
false
false
false
false
false
false
zero
72,851,263
What is the difference between WINDOWING_MODE_MULTI_WINDOW and WINDOWING_MODE_FREEFORM?
<p>As we can see there are some windowing modes such as FREEFORM, PIP, SPLIT modes in Android. WINDOWING_MODE_MULTI_WINDOW is added since Android 11. What is the difference? How MULTI_WINDOW mode is used for?</p> <p>Is WINDOWING_MODE_MULTI_WINDOW is a &quot;abstract&quot; mode that implement by others such as FREEFORM?...
As we can see there are some windowing modes such as FREEFORM, PIP, SPLIT modes in Android. WINDOWING_MODE_MULTI_WINDOW is added since Android 11. What is the difference? How MULTI_WINDOW mode is used for? Is WINDOWING_MODE_MULTI_WINDOW is a &quot;abstract&quot; mode that implement by others such as FREEFORM?
android
0
2022-07-04T02:35:05.640Z
2,022
7
2
0
40
0
310
87
1
0
false
true
false
false
false
false
zero
72,851,264
Stuck in safe mode in Android Studio
<p><a href="https://i.stack.imgur.com/GwgsW.png" rel="nofollow noreferrer">Screenshot</a></p> <p>I accidentally clicked the <code>Preview in safe mode</code> button. Then it was fixed in safe mode and I couldn't do anything. No matter how much I click the trust project button, I can't do anything in safe mode. How the ...
Screenshot I accidentally clicked the Preview in safe mode button. Then it was fixed in safe mode and I couldn't do anything. No matter how much I click the trust project button, I can't do anything in safe mode. How the hell am I supposed to solve this? Android studio chipmunk.
android-studio
2
2022-07-04T02:35:07.903Z
2,022
7
2
0
211
1
279
36
1
0
false
false
false
false
false
false
low
72,851,419
How can I use crop functionality in jet compose using registerForActivityResult?
<p>I tried many solution but I want programmatically Answer. Make sure I don't want to crop from compose in build function instead I want to select and crop image and then I want that URI.</p>
I tried many solution but I want programmatically Answer. Make sure I don't want to crop from compose in build function instead I want to select and crop image and then I want that URI.
android|image|kotlin|android-jetpack-compose|crop
0
2022-07-04T03:11:40.607Z
2,022
7
3
0
61
0
185
80
5
0
false
true
false
false
false
false
zero
72,851,443
Android Studio - How can I open url in User.java?
<p>I'm new in android studio.</p> <p>I'm hope to open url with User.java(has been data-binding), but the code is not working.</p> <p>Could someone give some advice?</p> <p>Thanks</p> <p>Edit: OpenURL method is called in activity_main.xml Edit: I have found problems.</p> <p><strong>User.java</strong></p> <pre><code>publ...
I'm new in android studio. I'm hope to open url with User.java(has been data-binding), but the code is not working. Could someone give some advice? Thanks Edit: OpenURL method is called in activity_main.xml Edit: I have found problems. User.java [CODE] MainActivity.java [CODE] activity_main.xml [CODE]
android-studio
0
2022-07-04T03:19:16.970Z
2,022
7
3
0
19
0
302
49
1
3
true
true
false
false
false
false
zero
72,851,484
Using Linux to load JNI library?
<p>I need to embed java native library(.so) in standalone binary.<br /> Since I don't have android machine, I'll run it on my <strong>Linux desktop</strong>.<br /> <em>(Library is x86 version so architecture isn't issue)</em></p> <p>So I'm thinking about create <strong>loader</strong> to run it...</p> <p><strong>Questi...
I need to embed java native library(.so) in standalone binary. Since I don't have android machine, I'll run it on my Linux desktop . (Library is x86 version so architecture isn't issue) So I'm thinking about create loader to run it... Question: Can I use C loader program that dlopen the target library? with calling JNI...
android|java-native-interface|loader
1
2022-07-04T03:27:48.420Z
2,022
7
3
0
49
1
456
32
3
0
false
false
false
false
false
false
low
72,851,643
Please help: A problem occurred evaluating project ':app'. > No signature of method
<p>I've editted Flutter source code like author's documentation but always having this error when building APK file:</p> <pre><code>FAILURE: Build failed with an exception. * Where: Build file 'F:\MyProject\android\app\build.gradle' line: 34 * What went wrong: A problem occurred evaluating project ':app'. &gt; No sig...
I've editted Flutter source code like author's documentation but always having this error when building APK file: [CODE] Line 34 in \android\app\build.gradle' is started with android . This is app\build.gradle file: [CODE] Flutter doctor => No issues found! Flutter --version Flutter 3.1.0-9.0.pre • channel dev • https:...
android|flutter|android-studio|gradle
2
2022-07-04T03:59:02.753Z
2,022
7
3
0
1,261
2
838
83
4
2
true
false
false
false
false
false
low
72,851,763
Is anyone know how to enable download and upload in webwiev
<p>I was trid to download and upload files in android stoudeo webwiev but I can't do that.Is anyone know how to enable upload and download files in webwiev in android stoudeo using java</p>
I was trid to download and upload files in android stoudeo webwiev but I can't do that.Is anyone know how to enable upload and download files in webwiev in android stoudeo using java
java|android-studio
2
2022-07-04T04:25:33.790Z
2,022
7
4
0
18
0
182
59
2
0
false
true
false
false
false
false
low
72,851,794
what is the use of side effect distinct Until Changed in jetpack compose
<pre><code>@Query(&quot;SELECT * FROM tasks ORDER BY id DESC&quot;) fun getAllTasks() : Flow&lt;List&lt;Task&gt;&gt; fun getAllTasksDistinctUntilChanged() = getAllTasks() </code></pre> <blockquote> <p>.distinctUntilChanged()</p> </blockquote> <p>I don't know the use of that side effect after a long search pleas...
[CODE] .distinctUntilChanged() I don't know the use of that side effect after a long search please someOne explain it in easy way.
android|android-studio|android-room|android-jetpack-compose
1
2022-07-04T04:31:18.087Z
2,022
7
4
0
90
1
130
72
4
1
true
false
false
false
false
false
low
72,851,816
WebViewGoogle.apk crash
<p>the crash info is from bugly platform as below. I cannot discover the crash reason, or key info. Wish good ideas come here ~ Thanks.</p> <pre><code>#26968 RenderThread SIGTRAP(TRAP_BRKPT) error stack </code></pre> <p>stack</p> <pre><code>#00 pc 000000000337c958 /system/app/WebViewGoogle/WebViewGoogle.apk #01 pc 0...
the crash info is from bugly platform as below. I cannot discover the crash reason, or key info. Wish good ideas come here ~ Thanks. [CODE] stack [CODE]
android|crash
0
2022-07-04T04:37:00.097Z
2,022
7
4
0
89
0
152
23
2
2
true
true
false
false
false
false
zero
72,852,008
Device brightness not set proper in android
<p>I want to change the brightness using seekBar it changes but the notification brightness bar progress is not the same as the progress value.</p> <pre><code> public class MainActivity extends AppCompatActivity { private SeekBar seekBright; private TextView txtProgress; @Override protected void onCrea...
I want to change the brightness using seekBar it changes but the notification brightness bar progress is not the same as the progress value. [CODE] This Output of my code When set to 0 progress is displayed anywhere. when set to 1 it displays proper ** Screenshot emulator version I SDK-33**
java|android|android-studio|kotlin
0
2022-07-04T05:10:34.660Z
2,022
7
5
0
37
1
291
43
4
1
true
false
false
false
false
false
zero
72,852,032
Network Signal in android with kotlin
<p>I have a problem I have to show signal strength in an app. Just like as our mobile shows towers for poor signal strength it only shows one tower and for good signal strength, it shows all towers.</p> <p>In the same way, I also want to calculate the signal strength.</p> <p>Thanks</p>
I have a problem I have to show signal strength in an app. Just like as our mobile shows towers for poor signal strength it only shows one tower and for good signal strength, it shows all towers. In the same way, I also want to calculate the signal strength. Thanks
android|kotlin
0
2022-07-04T05:12:56.027Z
2,022
7
5
0
32
1
265
37
2
0
false
false
false
false
false
false
zero
72,852,051
Ipay88 getting error after granting READ_PHONE_STATE
<p>I'm trying to implement Ipay88 into my Android app.</p> <p>Follow all steps yet getting error.</p> <p><code>java.lang.SecurityException: getUniqueDeviceId: The user 10024 does not meet the requirements to access device identifiers</code></p> <p>It seems like Ipay88 is trying to obtain Device ID, but somehow it could...
I'm trying to implement Ipay88 into my Android app. Follow all steps yet getting error. java.lang.SecurityException: getUniqueDeviceId: The user 10024 does not meet the requirements to access device identifiers It seems like Ipay88 is trying to obtain Device ID, but somehow it couldn't. Any help please?
android
0
2022-07-04T05:15:51.470Z
2,022
7
5
0
19
0
304
52
1
0
false
true
false
false
false
false
zero
72,852,151
Glide loadFailed donothing
<p>My imageView has default picture</p> <p>then I load a url with <code>Glide</code></p> <p>I want:</p> <p>if <code>Glide</code> load success, set picture to imageView</p> <p>if <code>Glide</code> load fail, do nothing (imageViewe still show the default picture)</p> <pre><code> Glide.with(myImageView) ...
My imageView has default picture then I load a url with Glide I want: if Glide load success, set picture to imageView if Glide load fail, do nothing (imageViewe still show the default picture) [CODE] but when Glide load fail, it make myImageView default picture disappear even I change the onLoadFailed return value to t...
android|android-glide
0
2022-07-04T05:35:20.200Z
2,022
7
5
0
28
2
393
26
2
1
true
false
false
false
false
false
zero
72,852,210
React native firebase not show data in Release apk
<pre><code>buildToolsVersion = 32 minSdkVersion = 24 compileSdkVersion = 32 targetSdkVersion = 32 react-native = 0.68.1 @react-native-firebase/app and @react-native-firebase/firestore = 15.1.1 Tested in Android 11 and 12. In android 11 work fine. </code></pre> <p>When getting the data from firebase/firestore, I s...
[CODE] When getting the data from firebase/firestore, I save it in a state ([]) of type object. When they are displayed in a type tag or in a they are not shown on the screen. This only happens when the data is obtained from a release type apk, on emulated device everything works normal. [CODE] Function where i get my ...
android|firebase|react-native|google-cloud-firestore
0
2022-07-04T05:44:16.217Z
2,022
7
5
0
50
0
398
50
4
5
true
true
false
false
false
false
zero
72,852,212
flutter How to add loop in final list Widget according to the data from database?
<p>I want to show images in loop which are store in List widget but this are static data. like this:-<br /> final List imgs = [<br /> &quot;assets/images/people.png&quot;,<br /> &quot;assets/images/people.png&quot;, &quot;assets/images/people.png&quot;,<br /> &quot;assets/images/people.png&quot;,<br /> &quot;assets/ima...
I want to show images in loop which are store in List widget but this are static data. like this:- final List imgs = [ &quot;assets/images/people.png&quot;, &quot;assets/images/people.png&quot;, &quot;assets/images/people.png&quot;, &quot;assets/images/people.png&quot;, &quot;assets/images/people.png&quot;, ]; now I wa...
android|flutter|flutter-dependencies|flutter-listview|flutter-image
0
2022-07-04T05:44:30.053Z
2,022
7
5
0
77
2
969
81
5
2
true
false
false
false
false
false
zero
72,852,222
implementing 'com.github.denzcoskun:ImageSlideshow:0.1.0' in fragment is making my app crash
<p>I have created a home fragment in which I am using imageslider. This is the xml file</p> <pre><code>&lt;com.denzcoskun.imageslider.ImageSlider android:id=&quot;@+id/slide&quot; android:layout_width=&quot;match_parent&quot; android:layout_height=&quot;250dp&quot; app:auto_cycle=&quot;true&...
I have created a home fragment in which I am using imageslider. This is the xml file [CODE] and this the HomeFragment.kt file [CODE] I am having an error &quot;unresolved reference findViewById &quot; and also the app is crashing.
android|android-fragments|androidimageslider
-1
2022-07-04T05:45:55.863Z
2,022
7
5
0
42
1
230
92
3
2
true
false
false
false
false
true
negative
72,852,251
okhttp3 minifyEnabled causes crash on Android 4.1.2
<p>This code in <code>okhttp:3.12.13</code> works fine with <code>minifyEnabled false</code></p> <pre><code> private static boolean supportsAlpn() { if (Security.getProvider(&quot;GMSCore_OpenSSL&quot;) != null) { return true; } else { try { Class.forName(&quot;android.net.Network&quot;); /...
This code in okhttp:3.12.13 works fine with minifyEnabled false [CODE] but with minifyEnabled true the following error occurs on Android 4.1.2 [CODE] What lines should be added to Proguard to avoid the crash? Edit: Adding rules 1 and 2 didn't help. These rules worked, but apk size gets increased by 0.6 MB. [CODE] I'm w...
android|proguard|okhttp
0
2022-07-04T05:49:57.693Z
2,022
7
5
0
65
1
411
51
3
3
true
false
false
false
false
false
zero
72,852,261
Sqlite create table with check constraint
<p>I am adding check constraint in sqlite android using create table query but Getting error like this</p> <blockquote> <p>android.database.sqlite.SQLiteException: no such column: bloodgrp (code 1): ,</p> </blockquote> <pre><code> String query = &quot; CREATE TABLE &quot; + register + &quot; ( &quot; + ...
I am adding check constraint in sqlite android using create table query but Getting error like this android.database.sqlite.SQLiteException: no such column: bloodgrp (code 1): , [CODE] db.execSQL(query);
android|sqlite|android-sqlite
-2
2022-07-04T05:51:25.120Z
2,022
7
5
0
58
1
203
41
3
1
true
false
false
false
false
true
negative
72,852,312
Dark mode not working for neumorphism in android ko
<p>I m adding code here:</p> <p>The library Im using is : <a href="https://github.com/fornewid/neumorphism" rel="nofollow noreferrer">https://github.com/fornewid/neumorphism</a></p> <p>In dark mode , its awful</p> <pre><code> &lt;soup.neumorphism.NeumorphImageView android:id=&quot;@+id/template_image&q...
I m adding code here: The library Im using is : https://github.com/fornewid/neumorphism In dark mode , its awful [CODE] What should I do to solve this? Im using kotlin for my app.
java|android|kotlin|user-interface
0
2022-07-04T05:57:37.670Z
2,022
7
5
0
28
1
179
51
4
1
true
false
false
false
false
false
zero
72,852,329
define alias for gradle task with custom argument
<p>I want to run</p> <p><code>./gradlew extractMyDeps</code></p> <p>instead of</p> <p><code>./gradlew :app:dependencies --configuration productionDebugRuntimeClasspath</code></p> <p><strong>but I can't pass args to this task via <code>dependOn</code></strong></p> <p>How to achieve my goal?</p> <pre><code>task(&quot;ext...
I want to run ./gradlew extractMyDeps instead of ./gradlew :app:dependencies --configuration productionDebugRuntimeClasspath but I can't pass args to this task via dependOn How to achieve my goal? [CODE]
android|kotlin|gradle|gradlew|gradle-kotlin-dsl
1
2022-07-04T06:00:23.367Z
2,022
7
6
0
106
1
203
49
5
1
true
false
false
false
false
false
low
72,852,336
facing issue in converting gradle to kotlin dsl
<p>How to convert this to kotlin dsl?</p> <pre><code>buildTypes { debug { minifyEnabled false } staging { debuggable true minifyEnabled true consumerProguardFiles 'project-proguard-rules.pro' } release { minifyEnabled...
How to convert this to kotlin dsl? [CODE] Mainly facing issue in converting the staging part?
android|build.gradle|gradle-kotlin-dsl
0
2022-07-04T06:01:44.023Z
2,022
7
6
0
32
0
93
47
3
1
true
true
false
false
false
false
zero
72,852,340
Is it possible to get the VLC player layout, complete with media player buttons and a seekbar etc..?
<p>How to properly use the VLC video player. I want the video to play with a pause/resume button, Seekbar, and some default features displayed on the player. There is no official documentation. Could you please assist me in locating the correct one?</p>
How to properly use the VLC video player. I want the video to play with a pause/resume button, Seekbar, and some default features displayed on the player. There is no official documentation. Could you please assist me in locating the correct one?
android|exoplayer|libvlc|video-player|vlc-android
0
2022-07-04T06:01:59.273Z
2,022
7
6
0
85
1
246
100
5
0
false
false
false
false
false
false
zero
72,852,357
Facebook Messenger API
<p>I am trying to build an Chat app in which I can receive &amp; send messages to my friends from/into Facebook Messenger using APIs.</p> <p>Does Facebook provide such APIs to do so?</p> <p>I tried to find the way, maybe we can do it using Webhook, but I think using webhook we only can send the message. Is there any an...
I am trying to build an Chat app in which I can receive & send messages to my friends from/into Facebook Messenger using APIs. Does Facebook provide such APIs to do so? I tried to find the way, maybe we can do it using Webhook, but I think using webhook we only can send the message. Is there any android demo for this? ...
android|facebook|sdk|facebook-messenger
0
2022-07-04T06:04:17.510Z
2,022
7
6
0
84
1
424
22
4
0
false
false
false
false
false
false
zero
72,852,389
Current Location using FRAGMENT
<p>Im Facing a issue with getting Current Location Using android java .</p> <p>when i Run my App in my personal phone i just see a normal map without any Current Location. and i can't get the permissions. But when i Run the App in Emulator i see just Toast with Longitude and Latitude.</p> <p>If any One can Help Please ...
Im Facing a issue with getting Current Location Using android java . when i Run my App in my personal phone i just see a normal map without any Current Location. and i can't get the permissions. But when i Run the App in Emulator i see just Toast with Longitude and Latitude. If any One can Help Please do it. Fragment C...
java|android|android-fragments|location|currentlocation
0
2022-07-04T06:10:11.157Z
2,022
7
6
0
26
0
330
31
5
1
true
true
false
false
false
false
zero