- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在设备上使用 adb shell
或终端仿真器,输入此命令将清除所有通知(需要 su
)
service call notification 1
这将发送一条短信(不需要 su
)
service call isms 5 s16 "PhoneNumber" i32 0 i32 0 s16 "BodyText"
我在哪里可以了解有关服务调用
的更多信息?我找到了 this question并欣赏答案对一切含义的分割。但是,我在哪里可以找到有关 notification 2
可能尝试调用的方法的信息?
运行 service call
不完整并打印了这个用法:
Usage: service [-h|-?]
service list
service check SERVICE
service call SERVICE CODE [i32 INT | s16 STR] ...
Options:
i32: Write the integer INT into the send parcel.
s16: Write the UTF-16 string STR into the send parcel.
我运行了 service list
,它为我的设备返回了 78 项服务,包括 isms
和 notification
并且大多数服务会打印看起来的内容成为命名空间(com.android.internal.telephony.ISms
用于 isms
和 android.app.INotificationManager
用于通知
)。我如何使用这些信息来了解我可以使用这些服务中的每一项做什么?
最佳答案
简而言之
Code related to service call command are just the arguments of the function and order at which the function occur in the aidl file of that service.Here is a syntax
service call <your_service_name> <number at which the function appears in your_service_name.aidl> <type of the argument like i32 or i64> <argument>
详细说明
我在了解它时遇到了很多问题,因此我将在剪贴板服务的帮助下分享解决方案。
首先你需要了解你感兴趣的服务-
为此,您需要通过键入来查找适用于特定 Android 系统的所有服务
adb shell service list
这是你将得到的——
.
.
.
59 ethernet: [android.net.IEthernetManager]
60 wifip2p: [android.net.wifi.p2p.IWifiP2pManager]
61 rttmanager: [android.net.wifi.IRttManager]
62 wifiscanner: [android.net.wifi.IWifiScanner]
63 wifi: [android.net.wifi.IWifiManager]
64 overlay: [android.content.om.IOverlayManager]
65 netpolicy: [android.net.INetworkPolicyManager]
66 netstats: [android.net.INetworkStatsService]
67 network_score: [android.net.INetworkScoreService]
68 textservices: [com.android.internal.textservice.ITextServicesManager]
69 network_management: [android.os.INetworkManagementService]
70 clipboard: [android.content.IClipboard]
71 statusbar: [com.android.internal.statusbar.IStatusBarService]
.
.
.
因为我对剪贴板服务很感兴趣,下面是它的样子
70 clipboard: [android.content.IClipboard]
所以从这里我们可以总结出服务名称为clipboard service,包路径为android.content.IClipboard
那么你需要知道IClipboard.aidl所在的完整路径。
要知道你需要在谷歌上搜索 IClipboard.aidl。
您需要在结果中查找来自 android.googlesource.com 网站的内容,例如我的情况-
https://android.googlesource.com/platform/frameworks/base.git/+/android-4.2.2_r1/core/java/android/content/IClipboard.aidl
所以在 +/android-4.2.2_r1 之后就是你的路径所在的地方。让那个路径成为 path_of_clipboard.aidl=
/core/java/android/content/IClipboard.aidl
由于这些服务调用代码依赖于 android 系统,因此您需要知道您的 android 操作系统名称-在我的例子中是 8.1.0
所以我会去下面的网站,谷歌把代码放在那里,然后从页面的左侧选择我的操作系统版本-
https://android.googlesource.com/platform/frameworks/base/
在我的例子中是 android-8.1.0_r50。这里 r50 并不重要。您可以选择任何版本。现在我将单击链接,然后我的 url 将如下所示
https://android.googlesource.com/platform/frameworks/base/+/android-8.1.0_r51
然后在添加 path_of_clipboard.aidl 之后,我的完整 url 将如下所示
https://android.googlesource.com/platform/frameworks/base/+/android-8.1.0_r51/core/java/android/content/IClipboard.aidl
这里会有很多接口(interface)中的方法,比如我的情况
void setPrimaryClip(in ClipData clip, String callingPackage);
ClipData getPrimaryClip(String pkg);
ClipDescription getPrimaryClipDescription(String callingPackage);
boolean hasPrimaryClip(String callingPackage);
void addPrimaryClipChangedListener(in IOnPrimaryClipChangedListener listener,
String callingPackage);
void removePrimaryClipChangedListener(in IOnPrimaryClipChangedListener listener);
/**
* Returns true if the clipboard contains text; false otherwise.
*/
boolean hasClipboardText(String callingPackage);
因此,第一个方法(即 setPrimaryClip)的代码将是 1,因为它出现在第一位,而最后一个方法(即 hasClipboardText)的代码将是 7,因为它出现在 aidl 文件的第七位。其他方法也类似。
因此,如果我想调用第七种方法,我将键入
adb shell service call clipboard 7
正如您可能已经看到的那样,我没有输入调用包名称,因为它不是必需的。
如果该方法需要参数,那么您可以像本例中那样传递它。
让我们假设一个方法,其代码在剪贴板中为 8,看起来像这样 -
getDemo(String arg1, int arg2, boolean arg3)
所以我会这样调用它
adb shell call clipboard 8 s16 "first_argument" i32 12 i32 1
这里的 i32 代表 32 位整数,s16 代表字符串。我们甚至可以将 bool 值作为整数传递,如示例所示。
在 bool 整数中,1 代表真,0 代表假。
Source
提示 保持 logcat 打开(就像在 android studio 中一样)以检查执行该 adb 命令时是否发生任何错误。
关于android - 在哪里可以找到有关 Android 的 "service call"shell 命令的信息?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54113935/
我相信我在子 shell 中调用 exit 会导致我的程序继续: #!/bin/bash grep str file | while read line do exit 0 done
我相信我在子 shell 中调用 exit 会导致我的程序继续: #!/bin/bash grep str file | while read line do exit 0 done
我有几个脚本,它们的第一部分看起来是一样的。这部分的功能是识别脚本在哪台机器上运行并相应地设置几个变量。它看起来像这样: ENV=`echo $LOGNAME | cut -c1-8` if
这是我正在尝试做的事情。我有 4 个 shell 脚本。脚本 1 需要先运行,然后是 2,然后是 3,然后是 4,并且它们必须按此顺序运行。脚本 1 需要运行(并在后台等待)2 才能正常运行,但是脚本
我有一个名为 a.sh 的脚本,其中的内容是: //a.sh: #!/bin/bash temp=0 while [ "$temp" -ne 500 ] do echo `date`
在snakemake中,使用shell()函数执行多个命令的推荐方式是什么? 最佳答案 您可以调用shell()多次内run规则块(规则可以指定 run: 而不是 shell: ): rule pro
我有一个 shell 脚本,我向其中传递了一些参数。Test1.sh -a 1 -b 2 -c“一二三” 在 Test1.sh 中,我按以下方式调用另一个 shell 脚本。Test2.sh $* 我
我有 2 个 shell 脚本。 第二个shell脚本包含以下函数第二个.sh func1 func2 first.sh 将使用一些参数调用第二个 shell 脚本, 将使用特定于该函数的一些其他参数
我有一个 Unix shell 脚本 test.sh。在脚本中,我想调用另一个 shell,然后从子 shell 执行 shell 脚本中的其余命令并退出 说清楚: test.sh #! /bin/b
我想在 shell 脚本中更改路径环境变量。路径变量需要在shell脚本执行后修改。 最佳答案 我知道有两种方法可以做到这一点。第一种是在当前 shell 的上下文中运行脚本: . myscript.
此 shell 脚本按预期运行。 trap 'echo exit' EXIT foo() { exit } echo begin foo echo end 这是输出。 $ sh foo.sh
我正在使用 vimshell在 vim 中执行命令 nnoremap vs :VimShellPop 使用此键映射,我可以打开 vim shell 并执行诸如“捆绑安装”之类的命令,然后 输入 exi
我想连接到不同的 shell(csh、ksh 等)并在每个切换的 shell 中执行命令。 下面是反射(reflect)我的意图的示例程序: #!/bin/bash echo $SHELL csh e
我目前正在尝试使用 BNF 和 LL 解析器在 C 中重新编写 shell。 否则,我需要知道 shell 运算符的优先级是什么| , > , > , & , ; ? 有没有人可以提供给我? 谢谢 最
不幸的是,我没有suspend 命令(busybox/ash)。但是我可以使用 kill -STOP $$ 从后台 shell (sh &) 返回到父 shell(以及 fg 之后)。 但是我不想输入
我需要知道,当用户切换到另一个 shell 时,通过单击它。 我试过 shellListener.shellDeactivated()但是当 shell 失去对它自己的控件的焦点时,会触发此事件,这意
file1.txt aaaa bbbb cccc dddd eeee file2.txt DDDD cccc aaaa 结果 bbbb eeee 如果能不区分大小写就更好了! 谢谢! 最佳答案 gre
我见过解压缩目录中所有 zip 文件的循环。但是,在运行此之前,我宁愿确保我将要运行的内容正常工作: for i in dir; do cd $i; unzip '*.zip'; rm -rf *.z
我对编程还很陌生,但我想知道 vim、emacs、nano 等 shell 文本编辑器如何能够控制命令行窗口。我主要是一名 Windows 程序员,所以可能在 *nix 上有所不同。据我所知,只能将文
我有一个包含第 7 列日期的文件,我的要求是将它与今天的日期进行比较,如果小于它,则删除该完整行。 此外,如果第 7 列中提到的任何日期超过 15 天,则将其修改为最多 15 天 下面的例子- now
我是一名优秀的程序员,十分优秀!