Native
web
Hybrid
App页面布局
框架布局FrameLayout
线性布局LineLayout
绝对布局AbsoluteLayout
相对布局RelativeLayout
表格布局TableLayout
App控件
文本输入框TextView
编辑框EditText
图片控件ImageView
按钮Button
复选框CheckBox
进度条ProgressBar
Android Debug Bridge adb组件
adb常用命令
adb help
adb devices
adb connect 127.0.0.1:62001
adb pull 手机路径 本机路径
pull [-a] REMOTE… LOCAL
adb push 本机路径 手机路径
push [–sync] LOCAL… REMOTE
copy local files/directories to device
adb shell 转化linux命令
adb install *.apk
app installation:
install [-lrtsdg] PACKAGE
install-multiple [-lrtsdpg] PACKAGE…
uninstall [-k] PACKAGE
start-server ensure that there is a server running
kill-server kill the server if it is running
reconnect kick connection from host side to force reconnect
reconnect device kick connection from device side to force reconnect
reconnect offline reset offline/unauthorized devices to force reconnect
adb shell am start -n 包名/入口
启动app
adb shell pm clear 包名清除应用的数据和缓存
adb shell imput tap x坐标 y坐标
adb shell pm list packages
列出所有的包名
adb logcat 打印日志