We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
titleColor
backIcon
optionMenu
optionMenuColor
optionMenuIcon1
optionMenu1
optionMenuIcon2
optionMenu2
SetOptionMenu
ShowOptionMenu
HideOptionMenu
jsBridge.setOptionMenu(data: Object); /** * data.text: String 右上角按钮的文字 * data.textColor: String 右上角按钮文字的颜色 * data.img1: String 右上角第1个按钮的base64图片 * data.img2: String 右上角第2个按钮的base64图片 */
SetCachePlugin
GetCachePlugin
SetPreferencePlugin
jsBridge.setCache(key: String, value: String/null, cb: Function) jsBridge.setCache(key: Array<String>, value: Array<String/null>, cb: Function) jsBridge.getCache(key: String, cb: Function) jsBridge.getCache(key: Array<String>)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
titleBar部分布局修改
进入容器后参数调整
titleColor
参数,可以初始设置标题文字的颜色backIcon
参数,可以初始设置back按钮的base64图片optionMenu
指定右上角文字的兼容基础上,增加optionMenuColor
,指定文字颜色optionMenu
参数为空或空字符串时,optionMenu文字隐藏布局不可见包括边距不可见optionMenuIcon1
参数,指定第1个optionMenu按钮的图片base64,没指定或空则隐藏布局不可见;点击后触发optionMenu1
事件 https://github.com/uyutech/android/blob/master/app/src/main/java/cc/circling/X5Activity.java#L299optionMenuIcon2
参数,指定第2个,效果同上;点击后触发optionMenu2
事件SetOptionMenu
功能整合,ShowOptionMenu
和HideOptionMenu
移除添加
SetCachePlugin
和GetCachePlugin
SetPreferencePlugin
,区别是参数可以同时传单个或多个移除SetCookiePlugin
native和js通信变更
The text was updated successfully, but these errors were encountered: