偶尔需要使用adb明白改变和查询content-provider中的属性值
一、conent 帮助文档如下
usage: adb shell content [subcommand] [options]
usage: adb shell content insert --uri <URI> [--user <USER_ID>] --bind <BINDING> [--bind <BINDING>...]
usage: adb shell content update --uri <URI> [--user <USER_ID>] [--where <WHERE>]
usage: adb shell content delete --uri <URI> [--user <USER_ID>] --bind <BINDING> [--bind <BINDING>...] [--where <WHERE>]
usage: adb shell content query --uri <URI> [--user <USER_ID>] [--projection <PROJECTION>] [--where <WHERE>] [--sort <SORT_ORDER>]
usage: adb shell content call --uri <URI> --method <METHOD> [--arg <ARG>] [--extra <BINDING> ...]
usage: adb shell content read --uri <URI> [--user <USER_ID>]
二、content使用案例
1、删除
删除uri=content://settings/settings/中的pointer_speed
adb shell content delete --uri content://settings/settings/pointer_speed
2、查询
查询uri中的所有属性值
adb shell content query --uri content://settings/settings
查询单个
adb shell content query --uri content://icc/adn --projection _id:name --where "name='zhangsan'" --sort "name ASC"
3、插入某个属性的值
adb shell content insert --uri content://icc/adn --bind _id:i:1 --bind index:i:2 --bind name:s:zhangsan --bind number:s:123456789
代表往sim卡联系人中插入 一条记录,其中 id 是1,index 是2,name 是zhangsan,number是123456789,在这个当中,–bind后跟的就是相关数据,i代表int,s代表string,b代表bollean,f代表float,l代表long。
adb shell content insert --uri content://settings/settings --bind name:s:my_number --bind value:i:24
本文摘抄于
1、adb命令行查询content-provider[直达车]
2、Adb Shell 下content使用 [直达车]
© 版权声明