Table of Contents
A summary of 19 commonly used Android tool classes
Home Backend Development PHP Tutorial Summary of 19 commonly used Android tools_PHP tutorial

Summary of 19 commonly used Android tools_PHP tutorial

Jul 13, 2016 am 09:59 AM
android main introduce Common tool develop Summarize Summary of kind

A summary of 19 commonly used Android tool classes

Mainly introduces and summarizes the commonly used tool classes in Android development, most of which are also applicable to Java.

Currently includes HttpUtils, DownloadManagerPro, ShellUtils, PackageUtils, PreferencesUtils, JSONUtils, FileUtils, ResourceUtils, StringUtils, ParcelUtils, RandomUtils, ArrayUtils, ImageUtils, ListUtils, MapUtils, ObjectUtils, SerializeUtils, SystemUtils, TimeUtil s.

The English version of this article see: Android Common Utils

All codes are in TrineaAndroidCommon@Github. Star or Fork^_* are welcome. In addition to these tool classes, this project also includes caching, drop-down ListView, etc. Detailed interface introduction can be found in TrineaAndroidCommon API Guide.

Specific use: You can directly introduce TrineaAndroidCommon as the library of your project (how to pull the code and add public libraries), or extract part of it yourself for use.

1. HttpUtils

Http network tool class, mainly including httpGet, httpPost and http parameter related methods, taking httpGet as an example:
static HttpResponse httpGet(HttpRequest request)
static HttpResponse httpGet(java.lang.String httpUrl)
static String httpGetString(String httpUrl)
Contains the above three methods, uses gzip compression by default, and uses bufferedReader to improve reading speed.
Other http parameters such as url, timeout, userAgent, etc. can be set in HttpRequest
In HttpResponse, you can get the return content, http response code, http expiration time (max-age and expires of Cache-Control), etc.
The first two methods can perform advanced parameter settings and return rich content. The third method can simply pass in the URL to obtain the returned content, similar to httpPost. For more detailed settings, you can use HttpURLConnection or apache's HttpClient directly.
The source code can be found in HttpUtils.java, and more methods and more detailed parameter introductions can be found in the HttpUtils Api Guide.

2. DownloadManagerPro

Android system download management DownloadManager enhanced method, which can be used to obtain download-related information, such as:
getStatusById(long) Get download status
getDownloadBytes(long) Get download progress information
getBytesAndStatus(long) Get download progress information and status
getFileName(long) Get the download file path
getUri(long) gets the download uri
getReason(long) Get the reason for download failure or suspension
getPausedReason(long) Get the download pause reason
getErrorCode(long) Get download error code
The source code can be found in DownloadManagerPro.java, and more methods and detailed parameter introduction can be found in the DownloadManagerPro Api Guide. About Android DownManager use visible DownManager Demo.

3. ShellUtils

Android Shell tool class, which can be used to check system root permissions and execute shell commands under the shell or root user. Such as:
checkRootPermission() Check root permission
execCommand(String[] commands, boolean isRoot, boolean isNeedResultMsg) executes commands in the shell environment. The second parameter indicates whether to execute with root permissions
execCommand(String command, boolean isRoot) shell environment execution command
The source code can be found in ShellUtils.java, and more methods and more detailed parameter introductions can be found in the ShellUtils Api Guide. Regarding silent installation, see silent installation with apk-root permission.

4. PackageUtils

Android package related tools can be used to (root) install applications, (root) uninstall applications, determine whether system applications, etc., such as:
install(Context, String) installs the application. If it is a system application or has been rooted, it will be installed silently, otherwise it will be installed normally
uninstall(Context, String) Uninstall the application. If it is a system application or has been rooted, it will be uninstalled silently, otherwise it will be uninstalled normally
isSystemApplication(Context, String) determines whether the application is a system application
The source code can be found in PackageUtils.java, and more methods and more detailed parameter introductions can be found in the ShellUtils Api Guide. Regarding silent installation, see silent installation with apk-root permission.

5. PreferencesUtils

Android SharedPreferences related tool classes can be used to conveniently read and write related types of data to SharedPreferences, such as:
putString(Context, String, String) save string type data
putInt(Context, String, int) save int type data
getString(Context, String) Get string type data
getInt(Context, String) Get int type data
The preference name can be modified by modifying the PREFERENCE_NAME variable
The source code can be found in PreferencesUtils.java, and more methods and more detailed parameter introductions can be found in the PreferencesUtils Api Guide.

6. JSONUtils

JSONUtils tool class can be used to conveniently read and write related types of data into Json, such as:
String getString(JSONObject jsonObject, String key, String defaultValue) gets string type value
String getString(String jsonData, String key, String defaultValue) Get string type value
Represents reading the value of a String type key from json

getMap(JSONObject jsonObject, String key) get map
getMap(String jsonData, String key) get map
Represents reading the value of a certain Map type key from json
The source code can be found in JSONUtils.java, and more methods and more detailed parameter introductions can be found in the JSONUtils Api Guide.

7. FileUtils

File tool class, which can be used to read, write and operate files. Such as:
readFile(String filePath) read file
writeFile(String filePath, String content, boolean append) write file
getFileSize(String path) gets the file size
deleteFile(String path) delete file
The source code can be found in FileUtils.java, and more methods and more detailed parameter introductions can be found in the FileUtils Api Guide.

8. ResourceUtils

Android Resource tool class, which can be used to read content from the raw and assets directories of the android resource directory, such as:
geFileFromAssets(Context context, String fileName) gets the content of a file in the assets directory
geFileFromRaw(Context context, int resId) gets the content of a file in the raw directory
The source code can be found in ResourceUtils.java, and more methods and more detailed parameter introductions can be found in the ResourceUtils Api Guide.

9. StringUtils

String tool class, which can be used for common string operations, such as:
isEmpty(String str) determines whether the string is empty or has a length of 0
isBlank(String str) determines whether the string is empty or has a length of 0 or consists of spaces
utf8Encode(String str) encodes in utf-8 format
capitalizeFirstLetter(String str) Capitalize the first letter
The source code can be found in StringUtils.java, and more methods and more detailed parameter introductions can be found in the StringUtils Api Guide.

10. ParcelUtils

Android Parcel tool class, which can be used to read or write special types of data from parcel, such as:
readBoolean(Parcel in) Read boolean type data from packel
readHashMap(Parcel in, ClassLoader loader) reads map type data from packel
writeBoolean(boolean b, Parcel out) writes boolean type data to parcel
writeHashMap(Map map, Parcel out, int flags) writes map type data to parcel
The source code can be found in ParcelUtils.java, and more methods and detailed parameter introduction can be found in the ParcelUtils Api Guide.

11. RandomUtils

Random number tool class, which can be used to obtain random numbers within fixed size and fixed characters, such as:
getRandom(char[] sourceChar, int length) generates a random string, all characters are within a certain string
getRandomNumbers(int length) generates random numbers
The source code can be found in RandomUtils.java, and more methods and more detailed parameter introductions can be found in the RandomUtils Api Guide.

12. ArrayUtils

Array tool class, which can be used for common operations on arrays, such as:
isEmpty(V[] sourceArray) determines whether the array is empty or has a length of 0
getLast(V[] sourceArray, V value, V defaultValue, boolean isCircle) Gets the element before an element in the array, isCircle indicates whether to loop
getNext(V[] sourceArray, V value, V defaultValue, boolean isCircle) Gets the next element of an element in the array, isCircle indicates whether to loop
The source code can be found in ArrayUtils.java, and more methods and more detailed parameter introductions can be found in the ArrayUtils Api Guide.

13. ImageUtils

Picture tool class, which can be used for conversion between Bitmap, byte array, Drawable and picture scaling. The function is currently weak and will be enhanced later. Such as:
bitmapToDrawable(Bitmap b) convert bimap to drawable
drawableToBitmap(Drawable d) drawable is converted to bitmap
drawableToByte(Drawable d) drawable is converted to byte
scaleImage(Bitmap org, float scaleWidth, float scaleHeight) scale image
The source code can be found in ImageUtils.java, and more methods and more detailed parameter introductions can be found in the ImageUtils Api Guide.

14. ListUtils

List tool class, which can be used for common List operations, such as:
isEmpty(List sourceList) determines whether the List is empty or has a length of 0
join(List list, String separator) Convert List to string and split with fixed separator
addDistinctEntry(List sourceList, V entry) adds unique elements to the list
The source code can be found in ListUtils.java, and more methods and more detailed parameter introductions can be found in the ListUtils Api Guide.

15. MapUtils

Map tool class, which can be used for common Map operations, such as:
isEmpty(Map sourceMap) determines whether the map is empty or has a length of 0
parseKeyAndValueToMap(String source, String keyAndValueSeparator, String keyAndValuePairSeparator, boolean ignoreSpace) The string is parsed into map
toJson(Map map) map is converted to json format
The source code can be found in MapUtils.java, and more methods and more detailed parameter introductions can be found in the MapUtils Api Guide.

16. ObjectUtils

Object tool class, which can be used for common operations on Object, such as:
isEquals(Object actual, Object expected) Compares two objects for equality
compare(V v1, V v2) compares the size of two objects
transformIntArray(int[] source) Integer array is converted to int array
The source code can be found in ObjectUtils.java, and more methods and more detailed parameter introductions can be found in the ObjectUtils Api Guide.

17. SerializeUtils

Serialization tool class, which can be used to serialize objects to files or deserialize objects from files, such as:
deserialization(String filePath) Deserializes an object from a file
serialization(String filePath, Object obj) serializes objects to files
The source code can be found in SerializeUtils.java, and more methods and detailed parameter introduction can be found in the SerializeUtils Api Guide.

18. SystemUtils

The system information tool class can be used to get the appropriate size of the thread pool. The function is currently weak and will be enhanced later. Such as:
getDefaultThreadPoolSize() gets the thread pool size that matches the system configuration
The source code can be found in SystemUtils.java, and more methods and more detailed parameter introductions can be found in the SystemUtils Api Guide.

19. TimeUtils

Time tool class, can be used for time-related operations, such as:
getCurrentTimeInLong() gets the current time
getTime(long timeInMillis, SimpleDateFormat dateFormat) Convert long to fixed format time string
The source code can be found in TimeUtils.java, and more methods and more detailed parameter introductions can be found in the TimeUtils Api Guide.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/975883.htmlTechArticleA summary of 19 commonly used Android tools mainly introduces and summarizes the commonly used tools in Android development, most of which are also applicable to Java. Currently includes HttpUtils, DownloadManagerPro, ShellUtils,...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

New report delivers damning assessment of rumoured Samsung Galaxy S25, Galaxy S25 Plus and Galaxy S25 Ultra camera upgrades New report delivers damning assessment of rumoured Samsung Galaxy S25, Galaxy S25 Plus and Galaxy S25 Ultra camera upgrades Sep 12, 2024 pm 12:23 PM

In recent days, Ice Universe has been steadily revealing details about the Galaxy S25 Ultra, which is widely believed to be Samsung's next flagship smartphone. Among other things, the leaker claimed that Samsung only plans to bring one camera upgrade

Samsung Galaxy S25 Ultra leaks in first render images with rumoured design changes revealed Samsung Galaxy S25 Ultra leaks in first render images with rumoured design changes revealed Sep 11, 2024 am 06:37 AM

OnLeaks has now partnered with Android Headlines to provide a first look at the Galaxy S25 Ultra, a few days after a failed attempt to generate upwards of $4,000 from his X (formerly Twitter) followers. For context, the render images embedded below h

IFA 2024 | TCL\'s NXTPAPER 14 won\'t match the Galaxy Tab S10 Ultra in performance, but it nearly matches it in size IFA 2024 | TCL\'s NXTPAPER 14 won\'t match the Galaxy Tab S10 Ultra in performance, but it nearly matches it in size Sep 07, 2024 am 06:35 AM

Alongside announcing two new smartphones, TCL has also announced a new Android tablet called the NXTPAPER 14, and its massive screen size is one of its selling points. The NXTPAPER 14 features version 3.0 of TCL's signature brand of matte LCD panels

Vivo Y300 Pro packs 6,500 mAh battery in a slim 7.69 mm body Vivo Y300 Pro packs 6,500 mAh battery in a slim 7.69 mm body Sep 07, 2024 am 06:39 AM

The Vivo Y300 Pro just got fully revealed, and it's one of the slimmest mid-range Android phones with a large battery. To be exact, the smartphone is only 7.69 mm thick but features a 6,500 mAh battery. This is the same capacity as the recently launc

New report delivers damning assessment of rumoured Samsung Galaxy S25, Galaxy S25 Plus and Galaxy S25 Ultra camera upgrades New report delivers damning assessment of rumoured Samsung Galaxy S25, Galaxy S25 Plus and Galaxy S25 Ultra camera upgrades Sep 12, 2024 pm 12:22 PM

In recent days, Ice Universe has been steadily revealing details about the Galaxy S25 Ultra, which is widely believed to be Samsung's next flagship smartphone. Among other things, the leaker claimed that Samsung only plans to bring one camera upgrade

Samsung Galaxy S24 FE billed to launch for less than expected in four colours and two memory options Samsung Galaxy S24 FE billed to launch for less than expected in four colours and two memory options Sep 12, 2024 pm 09:21 PM

Samsung has not offered any hints yet about when it will update its Fan Edition (FE) smartphone series. As it stands, the Galaxy S23 FE remains the company's most recent edition, having been presented at the start of October 2023. However, plenty of

Motorola Razr 50s shows itself as possible new budget foldable in early leak Motorola Razr 50s shows itself as possible new budget foldable in early leak Sep 07, 2024 am 09:35 AM

Motorola has released countless devices this year, although only two of them are foldables. For context, while most of the world has received the pair as the Razr 50 and Razr 50 Ultra, Motorola offers them in North America as the Razr 2024 and Razr 2

Xiaomi Redmi Note 14 Pro Plus arrives as first Qualcomm Snapdragon 7s Gen 3 smartphone with Light Hunter 800 camera Xiaomi Redmi Note 14 Pro Plus arrives as first Qualcomm Snapdragon 7s Gen 3 smartphone with Light Hunter 800 camera Sep 27, 2024 am 06:23 AM

The Redmi Note 14 Pro Plus is now official as a direct successor to last year'sRedmi Note 13 Pro Plus(curr. $375 on Amazon). As expected, the Redmi Note 14 Pro Plus heads up the Redmi Note 14 series alongside theRedmi Note 14and Redmi Note 14 Pro. Li

See all articles