gpt4 book ai didi

android - 在哪里可以找到有关 Android 的 "service call"shell 命令的信息?

转载 作者:行者123 更新时间:2023-11-30 05:08:30 25 4
gpt4 key购买 nike

在设备上使用 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 项服务,包括 ismsnotification 并且大多数服务会打印看起来的内容成为命名空间(com.android.internal.telephony.ISms 用于 ismsandroid.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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com