包含标签:Android 的文章
-
Example of setting translucency and transparency of components in Android
This article introduces how Android sets the translucent and transparent effects of components, and shares them for yo…… -
Simulate a simple way to exit the application by pressing the home key (share)
Examples are as follows: The above simple method (sharing) to simulate pressing the home key to exit the application i…… -
Detailed explanation of Java scheduled tasks
Timed tasks are often used in projects. Based on the blogger's own experience in using timed tasks, this paper introdu…… -
Detailed explanation of ContentProvider mechanism for Android data persistence
This paper illustrates the ContentProvider mechanism of Android data persistence. Share with you for your reference, a…… -
Detailed explanation of reading and writing content in SD card for Android data persistence
This paper describes the method of reading and writing content in SD card for Android data persistence. Share with you…… -
Initial understanding of Android touch event delivery mechanism
preface A knowledge point summarized today is the view event transmission mechanism in andorid, which is also the core…… -
Summary of methods of hiding title bar in Android Development
Summary of methods of hiding title bar in Android Development 1. Recommend! (because all projects are now apptheme by …… -
Summary of the implementation of custom view in Android
What is Android custom view In our daily development, many times the view provided by the system can not meet our need…… -
A detailed explanation of Java’s upward and downward transformation
A detailed explanation of Java's upward and downward transformation Transformation is based on inheritance. Inheritanc…… -
Detailed explanation of the relationship between screen density and picture size in Android
Detailed explanation of the relationship between screen density and picture size in Android preface Android supports m…… -
Solution to the problem that Android ImageView does not display JPEG images
Android ImageView does not display JPEG images Today, I am writing a small example. ImageView is set as invisible in X…… -
Android simple file manager instance (list file directory)
Core code: File fatherFile = new File(path); File[] files = fatherFile.listFiles(); design sketch: To implement this l…… -
EditText in the customized dialog in Android cannot pop up the input method solution
1. Unable to pop up the input method: Before calling the show () method, add an empty EditText with dialog. Setview (N…… -
Android imitation wechat payment password pop-up layer function
preview use This pop-up layer is a dialogfragment. The logic is encapsulated in it. It is very simple to use: Callback…… -
How does Android studio delete a project module
When you want to delete a module in Android studio, select the module in Android studio and right-click to find that t…… -
Android uses recyclerview to realize the functions of select all, top and drag
preface Today, I'd like to share with you how to select all in recyclerview and how itemtouchhelper can realize sidesl…… -
Android textview custom digital scrolling animation
background In the development needs, when there are total revenue, total number of users and other figures to be displ…… -
Textview method example for Android to realize digital beating effect
preface This article introduces how Android realizes the textview of digital jumping effect. It mainly uses the dancin…… -
Some pitfalls to pay attention to when using layoutinflator in Android
preface In the normal development process, we often use the layoutinflator class, for example, in fragment $oncreatevi…… -
How does Android load PDF files locally
Most apps open PDF files by invoking the tool that can open PDF files in the mobile phone through intent to view PDF f…… -
Detailed explanation and example of Android message queue model
Detailed explanation and example of Android message queue model The message queue and message loop of Android system a…… -
Summary of using dialog box in Android
preface Recently, I have some free time, so I spent an hour to summarize the use of the dialog dialog box. It is more …… -
Android calls the sharing function instance code provided by the system
Several ways to realize sharing function 1. Call the sharing function of the system 2. Through third-party SDK, such a…… -
Android simpleadapter adapter usage details
Android simpleadapter usage details Holderadapter background Android AdapterView uses a lot, such as listview, GridVie…… -
Thoughts and methods of Android imitation to realize free fish home page
First, let's look at the renderings The demo is written based on MVVM mode. You are welcome to criticize and correct i…… -
Android asynchronously downloads pictures and caches them to the local demo
In Android development, we often need to download XML or JSON type data from the server, including some image resource…… -
Android EditText implements segmentation of input content
There may be many input boxes that need to enter mobile phone numbers, bank card numbers or ID number in the project. …… -
Android adds text and image watermark example code to images
We sometimes need to add watermarks to pictures when we are doing projects. Shuihan encountered such a problem today, …… -
Method of clicking hyperlink to start QQ in WebView in Android
preface Once in an interview, the interviewer asked how to click a hyperlink in WebView to start a type of QQ similar …… -
Graphic tutorial of Android studio installation and configuration method
This article mainly explains some problems encountered in installing Android studio and configuring environment variab…… -
Java.net.bindexception: bind failed: eaddinuse problem in Android solution
Java.net.bindexception: bind failed: eaddinuse problem in Android solution Look at the following questions: resolvent:…… -
Talking about Android getting pictures on ImageView and a possible problem
1. Call setdrawingcacheenabled (true) before obtaining the picture: Example: mimageview.setdrawingcacheenabled (true);……