包含标签:Android 的文章
-
Android – saves battery by not painting each render call
I think there must be a simple solution, which I ignored. I think one option is framebuffer, but I'm not sure whether …… -
Java – how to get the version code of dependent packages?
public static int getPackageVersion(Context context, Class<?> tClass) { int versionCode = 0; //#1) Get …… -
Android – failed to deploy to App Engine – you must log in to perform this operation
I am new to Android studio and have just completed this tutorial https://github.com/GoogleCloudPlatform/gradle-appengi…… -
Does the Android – will monkey test occasionally enter the settings and click the restart button to restart the device?
When conducting monkey test on Android device, I send adb shell monkey --ignore-security-exceptions --ignore-crashes -…… -
Android – the entry file index.js is not found in any root directory: […] (react native)
I'm trying to build an APK for my first react native application, but I always get an error from gradle that it can't …… -
Android – room smashed release
I use room in my project and everything goes well, but it will give me this error when I try to run it at release time…… -
Java – how do I hide fragments at the beginning of mainactivity (or application)?
Well, the title says everything. I don't know how to hide it at startup. I tried to search, but nothing happened the w…… -
Can I use gradle. Properties for CI and Android studio respectively?
At present, I have a gradle.properties file. It is specially configured for CIS with low available memory, because oth…… -
Android – displays the progress dialog box when retrieving data from the firebase database
I hope the activity must display the progress dialog box when getting data from the firebase database. It doesn't disp…… -
Subscribe to ANCs on Android
Based on the services listed here, I am trying to subscribe to the service from an Android device, but I can't make th…… -
Android – how do I use locale and configuration to select different asset files as my language changes?
I want to change the JSON file from the assets folder according to the language changes in the application, and I want…… -
Java – the button in the alertdialog does not appear
I have an alertdialog box where the neutral button should cause me to disappear. The problem is that when the alertdia…… -
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); ……