mui

红米note3 S线刷MUI版本,解决手机卡顿

独自空忆成欢 提交于 2020-01-10 11:17:05
【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>> 参数: 机型:红米Note3s MUI:9.1 Android:6.0.1 基本流程: 1. 红米解锁BL 2. 下载线刷工具 http://bigota.d.miui.com/tools/MiFlash2018-5-28-0.zip 3. 下载红米ROM http://www.miui.com/shuaji-393.html 4. 开始刷机 详细步骤: 1. 解除红米BL锁 (1). 先下载解锁工具http://miuirom.xiaomi.com/rom/u1106245679/3.5.1108.44/miflash_unlock-3.5.1108.44.zip (2). 需要有小米账号密码,登录解锁工具 (3). 手机通过USB连接电脑,然后关机,按住开机键+音量下键/上键,进入Bootloader模式(出现一个维修的兔子界面) (4). 最后点击解锁工具的解锁按钮,等待进度条结束解锁 2. 下载线刷工具 3. 下载红米ROM刷机包 (1). 进入小米官方地址,选择与自己手机机型对应的ROM包,选择下载后放在电脑的某个磁盘,目录最好是不含中文 (2). 比如我自己的是红米Note 3S,一般大小在2G左右 4. 开始刷机 (1). 线刷包下载完成后解压,打开线刷包文件夹,复制地址栏地址如下图。 (2).

MUI事件绑定

こ雲淡風輕ζ 提交于 2020-01-09 07:58:42
除了可以使用addEventListener()方法监听某个特定元素上的事件外, 也可以使用 on()方法实现批量元素的事件绑定。on( event , selector , handler )event:Type 除了可以使用addEventListener()方法监听某个特定元素上的事件外, 也可以使用.on()方法实现批量元素的事件绑定。 .on( event , selector , handler ) event:Type: String,需监听的事件名称,例如:'tap' selector:Type: String,选择器 handler:Type: Function( Event event ),事件触发时的回调函数,通过回调中的event参数可以获得事件详情 示例:点击新闻列表,获取当前列表项的id,并将该id传给新闻详情页面,然后打开新闻详情页面 mui(".mui-table-view").on('tap','.mui-table-view-cell',function(){ //获取id var id = this.getAttribute("id"); //传值给详情页面,通知加载新数据 mui.fire(detail,'getDetail',{id:id}); //打开新闻详情 mui.openWindow({ id:'detail', url:

How to make a SectionGroup mandatory in NSIS script

廉价感情. 提交于 2020-01-05 07:10:23
问题 In an NSIS MUI script it is possible to make a section compulsory by adding "SectionIn RO" to the section. I would like to specify that the entire SectionGroup is compulsory. I know I can make each of the individual components compulsory which makes the group compulsory by default, but the SectionGroup checkbox is still enabled indicating that the user can turn it off. This could be confusing. Is there an equivilent to "SectionIn RO" for SectionGroups and thus force the group's checkbox to be

mui+回复弹出软键盘

拟墨画扇 提交于 2020-01-02 18:21:09
最近再做一个APP的时候,有一个评论回复的功能,在做APP的时候,直接用手指触发focus事件,来唤醒软键盘的弹出没有问题, 但是现在的功能需要对点击回复进行弹出软键盘来操作,参考过很多都有问题,后来仔细看了下官方的DEMO,发下这个问题是可以被解决掉的。具体方法如下: <style type="text/css"> .show-input-main{width: 100%; height:40px; border: 1px solid red; position: fixed; left:0px; bottom:0px; z-index: 20;} .show-input-box{width: 100%; height:40px; padding-right:55px;} .input-box{width: 100%; height:100%; background:yellow;} .input-box-btn{width: 55px; height: 100%; background: #007aff; position: absolute; top:0px; right:0px; text-align:center; line-height: 40px; color:#fff; font-size:16px;} #textarea-input{width: 100%;

mui下拉刷新上拉加载

佐手、 提交于 2019-12-29 22:56:50
新外卖商家端主页订单大厅页面 使用mui双webview,实现下拉刷新上拉加载 主页面: order_index.html <!doctype html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1,user-scalable=no"> <title>直播生活商家端-订单大厅</title> <script src="../../js/flexible.js"></script> <script src="../../js/mui.min.js"></script> <link rel="stylesheet" href="../../fonts/iconfont.css" /> <link rel="stylesheet" href="../../css/mui.min.css" /> <link rel="stylesheet" href="../../css/init.css" /> <link rel="stylesheet" type="text/css" href="../../css/gz_css.css" /> </head> <body style="background

MUI 微信支付代码

点点圈 提交于 2019-12-29 22:56:26
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" /> <title></title> <script src="js/mui.min.js"></script> <link href="css/mui.min.css" rel="stylesheet"/> <script type="text/javascript" charset="utf-8"> mui.init(); var channel = null; var channels = null; // 1. 获取支付通道 function plusReady() { // 获取支付通道 plus.payment.getChannels(function(cs) { channels = cs; }, function(e) { alert("获取支付通道失败:" + e.message); }); } document.addEventListener('plusready', plusReady, false); // var

Mui-登陆面-表单

巧了我就是萌 提交于 2019-12-29 22:56:02
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" /> <title></title> <script src="js/mui.min.js"></script> <link href="css/mui.min.css" rel="stylesheet" /> <script type="text/javascript" charset="utf-8"> mui.init(); </script> </head> <body> <header class="mui-bar mui-bar-nav"> <!--顶部导航栏-带返回键--> <a class="mui-action-back mui-icon mui-icon-left-nav mui-pull-left"></a> <h1 class="mui-title">测试属性</h1> </header> <div class="mui-content"> <form class="mui-input-group"> <div class=

Remove back button in ModernUI plugin for wpf

六眼飞鱼酱① 提交于 2019-12-24 14:30:45
问题 I am trying to develop a modern wpf application using the MUI package. However I do not wish for the back button to be present and I tried to follow the steps mentioned in this link but it is not working. I am getting errors as controls not defined in namespace, etc. Basically, I cannot get the code to compile. What am I doing wrong? 回答1: Because the TargetType property in the Style references controls from the ModernUI library, you need to add the XML namespace for the ModernUI controls in

NSIS脚本学习:创建 MUI 界面使用的自定义语言包文件(nlf & nsh)

六眼飞鱼酱① 提交于 2019-12-20 18:06:04
【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>> NSIS脚本的语言包文件,存放在以下目录: NSIS安装目录\Contrib\Language files 在这个目录下有很多语言包,一般简体中文使用的语言包是 SimpChinese.nlf 和 SimpChinese.nsh 两个文件。 在NSIS脚本中,写入下面这句话,就可以调用简体中文语言包了。 !insertmacro MUI_LANGUAGE "SimpChinese" 不过,NSIS程序默认的简体中文语言包有很多问题。这个语言包遣词非常生硬,难以满足客户的很多定制化要求。 因此我决定在这个语言包的基础上,自己新写一组语言包:CustomizedChinese CustomizedChinese.nlf 代码如下: # ################################### # nlf file of CustomizedChinese # Author: Tsybius2014 # DateTime: 2016/04/06 # Remark: none # ################################### # Header, don't edit NLF v6 # Language ID 2052 # Font and size - dash (-)

mui手机端页面下拉刷新,上拉刷新

左心房为你撑大大i 提交于 2019-12-20 05:54:14
最近套了一个手机端的页面,关于页面上列表形式展现的数据,数据太多,为了优化操作体验,使用了mui下拉刷新的功能,这里将这个模板功能记录下来,方便以后参考。 1.使用mui的下拉刷新,最基本的要引入mui的样式和js <link rel="stylesheet" href="css/mui.min.css"> <script src="js/mui.min.js"></script> 2.将标准的dom放入jsp中,注意<ul>标签里面的内容是动态拼出来的,我这里注释了一条,目的是为了标明固定li标签里的class,方便后面动态拼接的时候对应 <body> <!--下拉刷新容器--> <div id="pullrefresh" class="mui-content mui-scroll-wrapper"> <div class="mui-scroll"> <!--数据列表--> <ul class="mui-table-view mui-table-view-chevron" id="dbfl"> <!-- <li class="mui-table-view-cell"> --> <!-- <a href="" class="mui-navigate-right">这里要放拼接的html</a> --> <!-- </li> --> </ul> </div> </div> <