包含标签:Android 的文章
-
Android – link firebase parsing to Google play
I'm trying to link my firebase analysis project to Google play, but I created a firebase project with an 'x' email ID,…… -
Android – how to use espresso to check textinputlayout for errors
I want to be able to run the matcher against a textinputlayout view with an error set onView(withId(R.id.myTextInputLa…… -
Android – greenroot’s eventbus: two fragments call asynchronous tasks to work, which puzzles eventbus
I am currently dealing with fragments created under activities using the fragmentpageradapter. I use eventbus 3.0 of g…… -
Android – rotates the bitmap at a fixed point like a timer in surfaceview
I have an image in a paintable folder for the clock pointer. I want to rotate it at a fixed point like a timer. I trie…… -
How to delete built-in margins in Android WebView using JavaScript
I use Android WebView in my application. I noticed that it has a built-in edge. So I need to delete it according to th…… -
Android – how to create a file from an image URL without downloading an image
How do I create a file from an imageurl? I know what to do I want to know how to create a file object without download…… -
Cordova plugin camera: error getting “no image selected” on Android 4.4 device
I am using ionic 1. X to develop hybrid mobile applications. At present, I am dealing with strange behaviors related t…… -
Android – can I share the certificate used to sign APK?
Multiple Android developers in our project can access the Google play console to publish APK updates from their comput…… -
How to view the allocation of native and graphics memory in Android studio 3.0
When I analyze app memory in Android studio, I can see the consumption of different types of memory, But when I dump t…… -
Java – multiple similar requests issued in sequence in the transformation
Is there a way to execute multiple requests sequentially in retrofit? These requests use the same java interface and d…… -
How to add PAHO mqtt to Android studio
I want to use PAHO mqtt in Android studio. I mentioned this link. I should add the following to the gradle file The li…… -
Android – marquee using maxlines
How to use maxlines instead of singleline? This is my textview: <TextView android:text="bla bla bla bla bla bla…… -
Android compares the UTF-8 string with the UTF-8 input string EditText
In my Android application, I want to compare a UTF-8 string, such as "B ã I" with the string the user typed on EditTex…… -
Android – prevent scrolling and expand / collapse collapsible toolbars
I used the collapsible toolbar in my application. When the activity starts, the collapsible toolbar is expanded, scrol…… -
Android – how do I swap items from one part to another and vice versa in the recycler view?
I have a recyclerview. I want to show that the recyclerview has two parts. The first part of the first part is empty. …… -
Java – how to make the foreground attribute of a button work under API 23?
I have two buttons nested in LinearLayout. Between these buttons are two textviews. In XML, I have set the foreground …… -
Android – how to change the locale to use Latin Serbian (not Cyrillic Serbian)
setLocale("sr", "RS"); setLocale("sr_Latn", "RS"); //and setLocale("sr_Latn_RS", "RS"); resolvent: private static …… -
Android – how to collapse appbarlayout but not the contents of the toolbar
This is my application screen: And layout XML: <android.support.v4.widget.NestedScrollView android:id="@+id/con…… -
Live broadcast from GoPro 4 session to unofficial live broadcast
I am developing an Android application to get the real-time stream from GoPro 4 session to the application In the prev…… -
Android – how to overlay one path on another
I currently have the following codes: private void drawGreen(Canvas canvas) { greenPaint.setColor(0xFF00AA00); …… -
Android – how does the Bluetooth A2DP profile work?
I want to create a Bluetooth music player application to transfer audio from one device to another. I have read all th…… -
Java – “unable to parse: com. Google. Firebase: firebase core: 9.0.0”
I want to use fire base for authentication in my Android application >I created the application, then downloaded th…… -
Java – filter ArrayList after converting long (from constructor) to string
I store this long value in the database as datetime. I have a question about how to filter these records according to …… -
Android – PayPal service is not started (sandbox account), I get an error
I have an activity called sample activity. I have an intention from that activity. This is the navigationlayout1 activ…… -
Porting to Android: why do I get “unable to create the default xmlreader; is it the system attribute org.xml.sax.driver setting?”?
I'm porting some java code that works well on my desktop to Android. I have the following code snippet: import org.xml…… -
Android – how to minimize battery consumption in heavy services
When some "hot situations" happen, I want to create a service to do something, and "enthusiasm" I want to mean: >GP…… -
C# – httpclient.getasync will never return on xamarin.android
I am developing an Android application supported by the asp.net core application hosted on azure. Before using the fun…… -
Android – firebase code cannot create a new user
The code of my login / registration class is: package com.example.joshpc.bluetoothattendee; import android.app.Prog…… -
Android – listview and volleyball – image misallocation
I am using the volley library to load images from the Internet. I have a list view. Some rows are loaded using volley'…… -
Android – Google Maps V2 centers and rotates the camera position to accommodate the two markers
I'm trying to use the camera to move to fit my two tags and keep them at the same level. Therefore, this means modifyi…… -
Android – how to use setscrolllistener in staggeredgridview
I tried to add a scroll listener in staggeredgridview, where I couldn't find a way to add that I didn't see any implem…… -
Android – compress the bitmap and save it to the activity result of the sdcard
I've been discussing this problem and I'm not sure what to do. What I want to do is: take a picture, compress it to PN……