包含标签:Android 的文章
-
Animation effect of popupwindow entry and exit in Android
No more nonsense. I'll post the code directly to you. The specific code is as follows: Then define the animation file …… -
Simple practical case of popupwindow (displayed below the control)
Step 1: private PopupWindow mPopupWindow; Step 2: write a popupwindow layout file XML Step 3: write code in activity N…… -
Detailed explanation of MVP mode in Android
MVP evolved from the classic mode MVC, and their basic ideas have similarities: Controller / presenter is responsible …… -
Solution to the Caton problem of Android recyclerview
Why does recyclerview get stuck As a new control of V7 package, recyclerview has been widely welcomed by Android devel…… -
Summary of handling upload progress problems during Android large file upload
When uploading large files, displaying the upload progress is a good user experience and can effectively alleviate use…… -
Summary of common problems in Android video playback
Video playback is a common problem in Android development. In conventional videos, you can directly use videoview + me…… -
Summary of methods to judge whether network connection is available in Android
Android network judgment Judge whether the current network is WiFi 1、 Determine whether the network connection is ava…… -
Solve the problem of invalidation of the outermost margin in the item of Android listview
1. This phenomenon is found in the development: The item in the list is LinearLayout. The outermost layer of this item…… -
Android SharedPreferences realizes the function of remembering passwords
Realize the function of remembering passwords for your reference. The specific contents are as follows Write interface…… -
Android ontouchevent processing mechanism summary (required)
Some touch events will always be used in the project. Each time you use Baidu's various materials, look at the analysi…… -
Drawing round, triangular and fan-shaped avatars in Android image processing
preface I believe it is easy to draw circles and pictures in the daily development of Android, but drawing circular pi…… -
Android actionbar fully parses and uses the best navigation bar officially recommended (Part 2)
The main content of this article comes from Android doc. I have done some processing after translation. Good English f…… -
Android method of adding segment header for listview
design sketch: I remember a similar effect on GitHub Let's talk about the idea to achieve this effect: embed the segme…… -
Android limit EditText integer and scale filters (detailed)
A filter is written to limit the integers and decimal places of EditText input as needed, as shown in the following co…… -
Using spinner to realize the drop-down list function in Android
Spinner Spinner is a list selection box. After the user selects, a list will be displayed for the user to select. Spin…… -
Three methods to solve the problem that EditText does not display the cursor (summary)
There are three solutions 1. Add the following attributes to EditText 2. Add the following attributes to EditText 3. I…… -
The layout example code of the navigation bar turning the page below is displayed in the Android page
When there are too many page entries, paging is required. To display the layout related to paging in the layout, use A…… -
Android actionbaractivity setting full screen untitled implementation method summary
Android actionbaractivity setting full screen untitled implementation method summary preface: The new activity inherit…… -
Simple implementation of adding digital corner markers to Android Applications
Corner sign, English is badge, which means "badge, badge, medal; symbol, mark". design sketch You can see the red circ…… -
Discuss in detail the differences between set, pre and post of matrix in Android
Before talking about the difference between set, pre and post, let's talk about matrix. Matrix contains a 3 x 3 matrix…… -
Return value of ontouch method in Android ontouchevent event (Introduction)
1. If return false, the ontouch event is not successfully executed. After executing the code in ontouch, the ontouch e…… -
Detailed explanation of using AspectJ in Android
What is AOP AOP is the abbreviation of aspect oriented programming, that is, "aspect oriented programming". It is diff…… -
Solve the problem of blank space on the left of custom toolbar and action bar after Android v7
As shown in the figure: 1. View the parent topic of the widget.appcompat.toolbar as follows: The attribute contentinse…… -
Customize the shape of toast. Multiple clicks will not always pop up the implementation method of toast
The effect is as follows: I encapsulated a class: The following two textviews make the toast wider and higher respecti…… -
Android Gaode map POI retrieval imitation wechat sending location example code
Recently, the project needs to change the sending location module into an effect similar to that of wechat sending loc…… -
Android adds a prompt for the number of unread messages to the icon of the application (the number in the red circle)
Recently, we are working on a function to view unread messages. We need to add a function to prompt unread messages in…… -
Android property animation principle and databinding
Android property animation principle and databinding When you see this title, you may wonder what is the relationship …… -
Android imitation function button floatingactionbutton effect
Some time ago, I was watching attribute animation. It happened that the effect of this button can be realized by attri…… -
Android ADT offline download steps
Android ADT offline download steps Many online Android ide eclipse development environment tutorials, ADT installation…… -
Detailed explanation of Android dialog animation examples
Detailed explanation of Android dialog animation examples Animation description: the animation appears and disappears …… -
Creation method of Android custom control
This article shares the specific code for Android to create custom controls for your reference. The specific contents …… -
EditText limits the setting method of entering numbers to 1 digit after the decimal point
Set in the layout file of EditText: In the code: The above EditText restricts the input of numbers to 1 decimal place.……