Notice
The English translation of this page has not been completed, you are welcome to contribute translations to us.
You can use the Chrome Translation Plugin to translate entire pages for reference.
- kt
YukiHookFactoryChange Records
v1.0
first
v1.0.80
modified
合并到 IYukiHookXposedInit
,将方法体进行 inline
Function Illustrate
这是
YukiHookAPI
相关 lambda 方法的封装类以及部分 API 用法。
- ext-method
IYukiHookXposedInit.configsinline fun IYukiHookXposedInit.configs(initiate: YukiHookAPI.Configs.() -> Unit)
Change Records
v1.0.1
added
v1.0.80
modified
合并到 IYukiHookXposedInit
Function Illustrate
在
IYukiHookXposedInit
中配置Configs
。
- ext-method
IYukiHookXposedInit.encasefun IYukiHookXposedInit.encase(initiate: PackageParam.() -> Unit)
fun IYukiHookXposedInit.encase(vararg hooker: YukiBaseHooker)
Change Records
v1.0
first
v1.0.80
modified
合并到 IYukiHookXposedInit
Function Illustrate
在
IYukiHookXposedInit
中调用YukiHookAPI
。
Context.modulePrefs - ext-field
Change Records
v1.0
first
v1.1.9
deprecated
请迁移到 prefs
方法
Context.modulePrefs - ext-method
Change Records
v1.0
first
v1.1.9
deprecated
请迁移到 prefs
方法
- ext-method
Context.prefsfun Context.prefs(name: String): YukiHookPrefsBridge
Change Records
v1.1.9
added
Function Illustrate
创建
YukiHookPrefsBridge
对象。
可以同时在模块与 (Xposed) 宿主环境中使用。
如果你想在 (Xposed) 宿主环境将数据存入当前宿主的私有空间,请使用 YukiHookPrefsBridge.native
方法。
在未声明任何条件的情况下 (Xposed) 宿主环境默认读取模块中的数据。
- ext-method
Context.dataChannelfun Context.dataChannel(packageName: String): YukiHookDataChannel.NameSpace
Change Records
v1.0.88
added
Function Illustrate
获取
YukiHookDataChannel
对象。
Pay Attention
只能在模块环境使用此功能,其它环境下使用将不起作用。
- ext-field
Context.processNameval Context.processName: String
Change Records
v1.0
first
Function Illustrate
获取当前进程名称。
- ext-method
Context+Resources.injectModuleAppResourcesfun Context.injectModuleAppResources()
fun Resources.injectModuleAppResources()
Change Records
v1.1.0
added
Function Illustrate
向 Hook APP (宿主)
Context
或Resources
注入当前 Xposed 模块的资源。
注入成功后,你就可以直接使用例如 ImageView.setImageResource
或 Resources.getString
装载当前 Xposed 模块的资源 ID。
注入的资源作用域仅限当前 Context
或 Resources
,你需要在每个用到宿主 Context
或 Resources
的地方重复调用此方法进行注入才能使用。
Pay Attention
只能在 (Xposed) 宿主环境使用此功能,其它环境下使用将不生效且会打印警告信息。
- ext-method
Context.registerModuleAppActivitiesfun Context.registerModuleAppActivities(proxy: Any?)
Change Records
v1.1.0
added
v1.1.5
modified
加入最低 API 版本限制
Function Illustrate
向 Hook APP (宿主) 注册当前 Xposed 模块的
Activity
。
注册成功后,你就可以直接使用 Context.startActivity
来启动未在宿主中注册的 Activity
。
使用此方法会在未注册的 Activity
在 Hook APP (宿主) 中启动时自动调用 injectModuleAppResources
注入当前 Xposed 模块的资源。
你要将需要在宿主启动的 Activity
继承于 ModuleAppActivity
或 ModuleAppCompatActivity
。
Pay Attention
只能在 (Xposed) 宿主环境使用此功能,其它环境下使用将不生效且会打印警告信息。
最低支持 Android 7.0 (API 24)。
- ext-method
Context.applyModuleThemefun Context.applyModuleTheme(theme: Int, configuration: Configuration?): ModuleContextThemeWrapper
Change Records
v1.1.0
added
Function Illustrate
生成一个
ContextThemeWrapper
代理以应用当前 Xposed 模块的主题资源。
在 Hook APP (宿主) 中使用此方法会自动调用 injectModuleAppResources
注入当前 Xposed 模块的资源。
如果在 Hook APP (宿主) 中使用此方法发生 ClassCastException
,请手动设置 configuration
。
isSupportResourcesHook - field
Change Records
v1.0.80
added
v1.0.91
removed
请迁移到 YukiHookAPI.Status.isSupportResourcesHook
isModuleActive - field
Change Records
v1.0.6
added
v1.0.91
removed
请迁移到 YukiHookAPI.Status.isModuleActive
isXposedModuleActive - field
Change Records
v1.0.6
added
v1.0.91
removed
请迁移到 YukiHookAPI.Status.isXposedModuleActive
isTaiChiModuleActive - field
Change Records
v1.0
first
v1.0.91
removed
请迁移到 YukiHookAPI.Status.isTaiChiModuleActive
YukiHookModuleStatus - class
Change Records
v1.0
first
v1.0.91
deprecated
请迁移到 YukiHookAPI.Status