包含标签:Android 的文章
-
Multiple mapbox instances on Android
I need an instance of a map box map. One is active and the other is superimposed as a mode in the clip. The map in the…… -
Android project integrates kotlin, which makes the project unable to run (a red cross appears) solution
Recently, the project is not too busy. It plans to lead to kotlin, which Google has pushed for several years. After al…… -
Android studio annoying pop-up window for layout_ Width and layout_ height
I use Android studio 2.2.3 on Mac. Whenever I add a new element to the layout resource XML, layout_ Width and layout_ …… -
Android listview with radio button
I want to change the check box color of the selected item. This is my code: final ListView listView = (ListView) f…… -
Install occurred while installing app Android_ PARSE_ FAILED_ MANIFEST_ Malformed error
I encountered install while trying to install my application_ PARSE_ Failed_ MANIFEST_ Malformed error I have complete…… -
Android – unable to run the application – “the target device does not support the ‘run as’ command”
The first time I ran Android studio on a MacBook, I received this error. The program couldn't start on my device. I ju…… -
Android – cannot resolve base64.encodetostring
I'm trying to save an image on firebase using the following code Bitmap bm = BitmapFactory.decodeFile(imgDecodableSt…… -
Android – white border around dark theme cardviews
I have a custom control that extends cardview. I add it to the linear layout so that I can create a card grid. I don't…… -
Android – ‘com. Example. * *’ and ‘com. Example. * * {*;}’?
When I use Proguard, what is the difference between com. Example. * * and com. Example. * * {*;}? For example, what ha…… -
C# – what is the best way to slide and click on the relative layout in Android?
public bool OnTouch(View v, MotionEvent e) { if (gestureDetector.OnTouchEvent(e)) { //…… -
Gradle relies on using latlng in Java projects
I want to use the latling class in my java project https://developers.google.com/android/reference/com/google/android/…… -
Android – add button to graphic canvas
I am using the answer to this question: drawing on canvas and save image to create a canvas to draw an image I am open…… -
Java – Parcelable works without proper implementation
In the Android application, I send a bundle from an activity to a fragment public class Bar implements Parcelable { p…… -
Android – swipe to close the recyclerview with animation on the background
According to my understanding, one possibility to realize the sliding to release of recyclerview using the background …… -
Android – unable to listen to preference changes?
class Userviewmodel extends viewmodel{ appPrefs.registerOnSharedPreferencechangelistener(preferencechangelistener)…… -
Android – make a call using Rx, and then make multiple parallel calls from the result of the first call
I must call the API that returns the list of items. For each item in this list, I must call another API (if the list r…… -
Android databinding activity completed ()
I try to use the databinding library to implement MVVM in my application. I can find a solution to the simple tasks I …… -
Ajax doesn’t work in Android WebView
I'm loading a website in WebView. We use ajax on the website. It also works well in web browsers and mobile browsers, …… -
Android – why doesn’t the AdMob advertising frequency limit work?
I set up two display times per minute for each user, but it didn't work. The advertisement will be displayed every tim…… -
Java.io.ioexception: http request failed, HTTP status: 500 (ksoap2)
I am using ksoap2. When I send a request to the server and get java.io.ioexception: http request fails, HTTP status: 5…… -
Android – Google sign in failed only on (some) Xiaomi devices
I use Google login in my app. I'm using Google play service version 9.0.2 compile 'com.google.android.gms:play-service…… -
DP command problem in Java – INTERMEC printer
I am using INTERMEC direct protocol to provide printing commands for the printer. It contains text and barcode For 12 …… -
Android – genymotion 2.7.2 cannot be started after upgrading
I'm using genymotion and IntelliJ ultimate. Everything works well. Version 2.6 and Android VM work well. Then I upgrad…… -
Android – add text or pictures when recording video?
I'm trying to record and edit videos. In order to edit, I found a useful library called ffmpeg4android in Android. How…… -
Java – delete the database file from the assets folder
I want to delete the files in the assets folder at runtime. I have a database file in the Resources folder, which is c…… -
Android – what method do I call when I press the back button on my phone?
I have an application with many activities, which are created with onactivityresult Which method is called when I pres…… -
Android – kotlin: how to check whether a variable with lateinit attribute is initialized
I have a variable declared as private lateinit var apiDisposable: Disposable Then in the onpause () method, I'm doin…… -
Android – set the paintable position within the button
I have a button and a drawable on the left of the text, but I want the drawable to be closer to the text. So I need to…… -
Android – use the same intent service for parallel downloads
I have an intent service to handle the downloading and decompression of some files. Now I am trying to use the same in…… -
Android – unable to launch eclipse from ADT bundle in Ubuntu 12.04
So I downloaded the ADT package for Linux from developer.android.com, extracted it, 32-bit version, went to ADT bundle…… -
Android – calendar events in week view and day view
I want to create a calendar application with weekview and dayview functions Please give me some suggestions. I have se…… -
Java – how do I convert a string to the int value of the const class?
I have variables: String colorName = "BLUE"; I want to set this color to paint in the Android application. It should……