Android
-
Java – Android studio – AVD cannot recognize gestures (simulator cannot be unlocked)
I've just started learning to program for Android. Unfortunately, I've encountered a problem after making a program (H…… -
What APIs do Google Android apps use?
There is a Google Mobile App for Android. To receive all information, you must use some APIs How do I retrieve this in…… -
Android – why is my soundpool muted?
I set up my soundpool and load sound resources in oncreate(): soundPool = new SoundPool(4, AudioManager.STREAM_MUSIC, …… -
Android – exoplayer plays multiple videos at the same time
I want to play video lists at the same time (one by one, like a video) I'm using exoplayer to play these videos now, b…… -
Java – Android – checkbox is repeated every 10 times in listview
Hello, I've been trying to create a list view using a custom adapter to place two textviews and a check box in it. The…… -
Android senior engineer series learning route introduction, unexpected surprise
Recently, I found that some readers wrote a message about job hopping interview. Among them, several programming veter…… -
Android – how to invalidate glide cache for certain images
I'm writing an application that needs to load a lot of images from the Internet (comic book reader). I need to cache s…… -
Android – how to open a button click URL in the default browser or WebView
How do I open a web address in WebView or the default browser after clicking the button? At present, when I click the …… -
Android – issue: the specified child node already has a parent node. You must first call removeview() on the child’s parents
I develop applications to add dynamic data to multiple table views. The structure is as follows My code in onpostexecu…… -
Android – error this API project is not authorized to use this API. Please make sure to activate this API in the console
I created an Android project using Google Places API. Once I send the nearest place request, I receive this error: I h…… -
The security encryption provider is deprecated in Android n
I know Google has abandoned the crypto provider in Android n, but what is the best way to migrate old encrypted data r…… -
Android – Google maps apiv2 authentication failed
Error: 08-15 12:59:17.435: E/Google Maps Android API(14665): Failed to load map. Error contacting Google servers. This…… -
Access external URL (Google. Com) from phonegap (Android)
I'm new to phonegap and Android. I can't access the external URL. Like Google from phonegap, I tried iframe and window…… -
Java – retrieve WiFi connection status (Android)
I follow the following link to connect to my local WiFi. It works perfectly. I can connect to my local WiFi However, I…… -
Android – change the default design theme to a custom color
I am new to Android studio. As a beginner, I have created a simple application for testing purposes only and see the a…… -
The Android application faces an error when adding to Lib using android-support-v4.jar and tries to log in using Proguard in IntelliJ idea
I'm trying to sign my application. If I don't check Proguard, the login process is OK. But if I use Proguard, I'll get…… -
Android fills the text in textview on the left, image on the left and text on the right
I have a textview, which contains the image on the left and the text on the right: I want to create a space between th…… -
Android – the new preference library supports incorrect themes at runtime
I'm trying to use the new preference V14 support library. In order to provide material styles for preferences, I use t…… -
Android – text selection pop-up?
I want to display a pop-up window when the user selects text in EditText This is what I want to do: (screenshot from G…… -
Android – reaction to native running Hello World
I am using this tutorial https://facebook.github.io/react-native/docs/getting-started.html#content I am using Windows …… -
Android permission processing, thorough analysis of source code
In the "Java background learning suggestions for Android programmers" I wrote, it is mentioned that because of the inh…… -
Java – how to run a thread repeatedly after a period of time
I want to run a thread (perform some time-consuming tasks in the background and do not update the UI). It just downloa…… -
Android – this handler class should be static, otherwise it may leak (null)
This Handler class should be static or leaks may occur (null) The 'class' of this message refers to' myactivity ', b…… -
Android – I failed [install_failed_already_exists] when I tried “ADB install”
See the English answer > failure [install_failed_ready_exists] when I tried to update my application 5 apks do not …… -
Android – alert dialogue protects access
I'm trying Android development and getting the location of the device The following lists my gpstrancker classes and r…… -
Android – invoking active methods from fragments
I'm dealing with fragments. I have an activity and different fragments. Each fragment needs to access a class (called …… -
Android – detects whether the input method is selected
In my application, I need to let the user select an input method. Once it is selected, I should perform some tasks. Ho…… -
Android – listview. Setfooterview (V) footer changes are not visible in the listview displayed by viewpager
I called listView.setFooterView(v) Now I should add that listview is located in a view (not a frame) added to viewpa…… -
Android – is it safe to convert using getactivity()?
I am writing an application with a parent activity and several child fragments. I try to make the fragment communicate…… -
Android – how to query complex nested objects in the room?
I have several entities, as you can see below. The problem is how to correctly select nested lists when you have multi…… -
Java – Android OpenGL: illegalargumentexception direct buffer using native commands
Android developers! I'm in trouble. My Android application must use OpenGL to draw a few lines. I take this as an exam…… -
Android – how do I send applications to the background?
How do I send my application to the background code? How do I capture events when I press the home key? Thank you. res……