包含标签:Android 的文章
-
Android studio implements a simple shopping mall interface
With the development of the Internet, the popularity of electronic products such as mobile phones and the rise of e-co…… -
How to import Android projects with different gradle versions
Bloggers have posted many Android projects. Many students commented that they can't run or report errors after importi…… -
Android studio implements a simple QQ login interface
QQ is one of the most used software in our daily life, including login interface, chat interface after entering, frien…… -
Android intelligent chat robot
Next, a relativelayout is placed under the textview, and a listview is placed in it to display the chat message list. …… -
How Android studio implements music player (easy to use)
When we play code for a long time, we will certainly feel tired and boring. At this time, we will continue to play cod…… -
Android studio implements address book
This project mainly realizes the functions of adding, deleting, modifying and querying contact information (name and t…… -
ERROR: Could not install Gradle distribution from ‘ https://services.gradle.org/distributions/gradle
When you create a new project or import a project, gradle errors often appear, because this is a file on a foreign web…… -
How does Android studio remove the default title bar of the interface
(1) Click manifests in the app directory on the left to open the androidmanifest.xml file, as shown: -
The Android calculator you want, it’s coming today!
This project mainly realizes the simple calculator function, including the basic operation of addition, subtraction, m…… -
Android mobile application foundation tutorial [program activity]
@H_ 301_ 155@ Intent intent = new Intent(MainActivity.this,SecondActivity.class); startActivityForResult(inten…… -
Android studio realizes QQ registration, login and jump between friend lists
This project mainly includes three interfaces: registration, login and friend list, and jump between them. The friends…… -
Android common interface layout (detailed introduction)
1、 View view All UI elements are built through view and ViewGroup. For the user interface of an Android application, …… -
Android course selection system
This project mainly realizes the course selection system. Users are divided into two roles: student and administrator.…… -
How does Android studio allow access to network resources
(1) Click manifests in the app directory on the left to open the androidmanifest.xml file, as shown: <uses-permissi…… -
How does Android studio export APK files
We usually write Android. In most cases, we run debugging on the simulator. However, in the actual development, there …… -
Android mobile application foundation tutorial [data storage]
FileOutputStream fos = openFileOutput(String name, int mode); //参数是文件名和文件的操作模式 //打开应用程序中对应的输…… -
How to view the gradle version and path of an Android project
1. Check the gradle version of the project: open the gradle wrapper file to see this line, which is actually the downl…… -
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); …… -
Which Android SDK class can be used to change settings, such as APN, E911, or CMAS
I want to know if anyone can point out a good source to explain how to use the Android SDK to change the settings rela……