- 论坛徽章:
- 0
|
- UI
- layoutopt
Ref:
- http://developer.android.com/guide/developing/debugging/debugging-ui.html#layoutopt
Optimize layout files, such as to check if there is useless element.
- hierarchyviewer
Ref:
- http://developer.android.com/guide/developing/debugging/debugging-ui.html#HierarchyViewer
View layout hierarchy of an application running on Emulator or devices running a
developer version of the Android system.
Simple usage:
- To load view hierarchy, click button "Load View Hierarchy"
- To view a single view object, double click the view in hierarchy
- You can view the whole layout hierarchy, a single view, their object, and you can alse save hierarchy as PNG
- draw9patch (create a NinePatch graphic)
Ref: http://developer.android.com/guide/developing/tools/draw9patch.html
- xxx
- Dev
- android
Ref: http://developer.android.com/guide/developing/tools/android.html
Lets you:
- Create, delete, and view Android Virtual Devices (AVDs).
- Create and update Android projects.
- Update your Android SDK with new platforms, add-ons, and documentation.
- ProGuard
Ref: http://developer.android.com/guide/developing/tools/proguard.html
Used to shrink, optimize, and obfuscate source code.
- zipalign
Ref: http://developer.android.com/guide/developing/tools/zipalign.html
zipalign is an archive alignment tool that provides important
optimization to Android application (.apk) files.
zipalign must only be performed
after the .apk file has been signed with your private key.
If you perform zipalign before signing, then the signing procedure will undo
the alignment
- apkbuilder
To create apk file.
- aapt (Android Asset Packaging Tool)
Permissions, resources, configurations related APK file.
- xxx
- Profiling
Ref:
- http://developer.android.com/guide/developing/debugging/debugging-tracing.html
Objective: Profile application's performance, just like tool 'gprof' under Unix.
Method:
- DDMS
- Click button 'Start Method Profiling'
- Do some opearation to monitor target application
- Click button 'Stop method Profiling', and wait for a while, then a window will pop up automatically to display results.
- Debug Code
// start tracing to "/sdcard/calc.trace" Debug.startMethodTracing("calc"); // ... // stop tracingDebug.stopMethodTracing();
And then uses one of the following tools to view resule
- hprof-conv
Ref: http://developer.android.com/guide/developing/tools/hprof-conv.html
Convert the HPROF file that is
generated by the Android SDK tools to a standard format so you
can view the file in a profiling tool of your choice.
- xxx
- Test & Debug
- adb (Android Debug Bridge)
Ref: http://developer.android.com/guide/developing/tools/adb.html
adb is a versatile command line tool that lets you communicate with an emulator instance or connected Android-powered device:
- Start/Stop server
- Shell command (adb shell <cmd>)
- monkey
Ref: http://developer.android.com/guide/developing/tools/monkey.html
Generate pseudo-random streams of user events such as clicks, touches, or gestures, as well as a number of system-level events.
You can use the Monkey to stress-test applications that you are developing, in a random yet repeatable manner.
- dumpsys (Dump system data to the screen)
- dumpstate (Dump state to a file)
- dmesg (Dump kernel message)
- bmgr (Interact with the Backup Manager
on devices)
You can:
- Backup application's data
- Restore data
- Wipe application's data
- sqlite3
Ref: http://developer.android.com/guide/developing/tools/adb.html#sqlite
To
manage SQLite databases created by Android applications.
- xxx
- Query for Emulator/Device Instances
- Install/Uninstall an Application
- Push/Pull file/dir
- Debug
- logcat (Manage log messages)
Ref: http://developer.android.com/guide/developing/tools/logcat.html
- bugreport
- xxx
- ddms
- mksdcard
Create a FAT32 disk image that you can load in the
emulator.
- mulator
Ref: http://developer.android.com/guide/developing/tools/emulator.html
- Options of 'emulator'
- Hot keys of enumator, such as BACK, CTRL+F11 etc
- dmtracedump (Generate
graphical call-stack diagrams from trace log files)
Ref: http://developer.android.com/guide/developing/tools/dmtracedump.html
- monkeyrunner
Ref: http://developer.android.com/guide/developing/tools/monkeyrunner_concepts.html
The monkeyrunner tool is not related to the UI/Application Exerciser Monkey (also known as the monkey).
The monkeyrunner tool provides an API for writing programs that control an Android device
or emulator from outside of Android code. Such as to write a Python program
that installs an Android application or test package, runs it, sends keystrokes to it,
takes screenshots of its user interface, and stores screenshots on the workstation. - xxx
- xxx
|
|