Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What are the commonly used Android instructions and simulator parameters

2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

What are the commonly used Android instructions and simulator parameters? I believe many inexperienced people are at a loss about this. Therefore, this paper summarizes the causes and solutions of the problem. Through this article, I hope you can solve this problem.

Android Simulator Command Line Startup Mode

Execute emulator in android-sdk-windows-1.1\ tools to execute the simulator

Add the-skin parameter and specify that the prompt mode is HVGA-L, then it can be directed to

Emulator-skin HVGA-L (480,320, horizontal prompt)

Emulator-skin HVGA-L (320mm 480, Vertical prompt, Mould preset mode)

Emulator-skin HVGA-L (3200,240, horizontal prompt)

Emulator-skin HVGA-L (240mm 320, vertical prompt)

Use mksdcard instructions to simulate the memory card of 1GB

Mksdcard 1024M sacard.img

Simulate a simulator plugged into a SD card

Emulator-sdcard sdcard.img

Use adb+push to upload files to SD memory card

Adb push 001.jpg / sdcard (copy the file to the / sdcard directory)

Adb push pictures / sdcard (copy picture photos directory to / sdcard directory)

Adb push mp3 / sdcard (copy mp3 music directory to / sdcard directory)

Adb shell (Android Mod launcher command line mode)

# cd / sdcard (enter / sdcard directory)

# ls (view files in SD memory card)

Use adb+pull to download files from a SD memory card

Adb pull / sdcard/001.jpg. (download the files in the / sdcard directory)

Adb pull / sdcard/pictures. (download the pictures directory under sdcard)

Delete the files in the SD card

Adb shell

# ced / sdcard

# rm 001.jpg (delete the files in the SD memory card)

# rm-r * (delete the directory of all files in SD memory card)

Movie playing method of Android Simulator

Mksdcard 4096m video.img (making an image SD memory card)

Adb push video.avi / sdcard (copy image from computer to SD card)

Emulator-sdcard video.img (start the simulator and load the SD card)

Download free video playback, ex: Meridian VideoPlayer (iiivpa.apk)

Http://sites.google.com/site/eternalsandbox/Home/meridian-

Video-

Player

Adb install iiivpa.apk (install Meridian Video Player)

Next, you can use the installed player to play .mp4 and 3gp.wmv.

Install APK applications

Adb install filename.apk (Ann filename.apk)

Adb install-r filename.apk (retain the set data, reinstall filename.apk)

Adb-s emulator-5554 install filename.apk (specifies that the APK suite is installed in the Android emulator in 5554)

Remove APK applications

Adb uninstall package

Adb uninstall-k package (retain data when removing the program)

This package name is not the name of the installation APK package or the name of the application prompted in the emulator

You can first go to the / data/data or data/app directory to query the name of the package you want to remove

Adb shell

Ls / data/data or / data/app (query Package)

Exit

Adb uninstall package (remove the Package from the query)

ADB system error removal connection tool

$adb devices (hint of how many simulators are currently running)

$adb-s (specify simulator to operate)

Adb-s emulator-5554 install email.apk

$adb install apkfile (install APK application suite)

Adb install email.apk

$adb uninstall package (remove APK application suite)

Adb uninstall com.android.email

$adb shell (enters Android system instruction line mode)

$ls

$dmesg (view Android Linux Kernel operation information)

Ls- prompt file directory

Cd- enters the directory

Rm- delete files

Mv- Mobile Archives

Mkdir- create a new directory

Rmdir- delete directory

$adb push (copy files to SD card)

Adb push mp3 / sdcard

$adb pull. (download files from Android system)

Adb pull / data/app/com.android.email

$adb logcat (monitoring simulator operation record, leaving monitoring mode with Ctrl + c)

$adb bugreport (New adb debugging report)

$adb get-state (get adb server operation status)

$adb start-server (start the adb server)

$adb kill-server (shut down the adb server)

$adb forward tcp:6100 tcp:7100 (change simulator network TCP port)

$adb shell ps-x (prompt for all running trips on Android)

$adb version (prompt for adb version)

$adb help (prompt for adb instruction parameters)

Emulator command line startup parameters

Emulator-timezone Asia/Taipei (specified area)

Emulator-no-boo-anim (omit the startup animation of the small robot)

Emulator-scale auto (resize the emulator window)

Emulator-scale factor (factor: 0.1-3.0)

Emulator-dpi-device 300 (change the resolution of the simulator, default is 165dpi)

Emulator-skin (change simulator prompt mode)

Emulator-help-keys (prompt for keyboard shortcuts)

Emulator-shell (equivalent to adb shell function)

Emulator-data data.img (causes the / data directory to use data.img 's file space)

Emulator-sdcard sdcard.img (causes the / sdcard directory to use sdcard.img 's file space)

Emulator-cache cache.img (browser temporarily stored in storage space)

Emulator-wipe-data (restore the simulator to its original settings)

Emulator-help (prompt for emulator instruction parameters)

After reading the above, have you mastered the common methods of Android instructions and simulator parameters? If you want to learn more skills or want to know more about it, you are welcome to follow the industry information channel, thank you for reading!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report