`
文章列表
典型的使用场景就是要设置一个头像,头像需要从系统图库或者拍照获得,在android4.4之前,我用的代码没问题,但是今天使用android4.4的时候突然发现不灵了。baidu了一圈,终于解决了。 下面是解决方案: private String[] items = new String[] { "图库","拍照" }; /* 头像名称 */ private static final String IMAGE_FILE_NAME = "face.jpg"; /* 请求码 */ private static fi ...
下面的代码是实现一个带边框的xml,很常见 <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android"> <!-- <gradient android:startColor="#FFFFFFFF" android:centerColor="#FFFFFFFF" android ...
首先下载git,安装即可; 1,在github.com新建一个项目,填入Repository name,点击Create Repository 2,复制项目地址,通常像这样https://github.com/你的账户名/你的项目名.git 3,打开git GUI,选择“克隆已有版本库”; 在Source Lacation中粘帖刚才复制的项目地址; 在Target Direction中输入需要同步的目录文件夹; 4,在这个新创建的文件夹中放入需要上传的项目等,鼠标右击选择git GUI弹出管理界面,选择“重新扫描”,将扫描到的文件全部选中,在点击“提交-->缓存为提交”,之后点击“提交” ...
demo: http://rubentd.com/radios-to-slider/ 用法: <script src="js/jquery-1.10.2.min.js"></script> <script src="js/jquery.radios-to-slider.js"></script> <script> $(document).ready( function(){ $("#radios").radiosToSlider(); }); ...
该例子位于https://github.com/umano/AndroidSlidingUpPanel ViewDragHelper的用法: http://flavienlaurent.com/blog/2013/08/28/each-navigation-drawer-hides-a-viewdraghelper/ Android ViewDragHelper完全解析 自定义ViewGroup神器 http://www.open-open.com/lib/view/open1437282182021.html 上拉前: 上拉中: 上拉后: 使用: package com ...
1.匹配正整数:/^[0-9]*[1-9][0-9]*$/ 2.匹配非负整数(正整数+0):/^\d+$/ 3.匹配中文:/^[\u4e00-\u9fa5]/ 4.匹配Email:/^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*/ 5.匹配网址URL:/^(f|ht){1}(tp|tps):\/\/([\w-]+\.)+[\w-]+(\/[\w- ./?%&=]*)?/ 6.匹配字母开头,5-16字符,字母数字下划线:/^[a-zA-Z][a-zA-Z0-9_]{4,15}$/ 7.匹配数字,字母,下划线,中文:/^[\u4e00-\u9fa5A ...
以后可能会用到,记一下 原址:http://www.iteye.com/topic/1135252 一、当文字与图片在一行,需要将文字与图片底对齐,需要这样写: <li>记住密码<img src="" align="bottom" style="margin-bottom:-4px"/></li> 二、当文字与图片在一行,需要将文字与图片居中对齐,需要这样写: <li>记住密码<img src="static/img/xyx.jpg" align= ...
I am currently building a News Aggregator App and I am using InAppBrowser for people to read the articles. Now, my questions is: Can I remove the URL and Navigation Bar? Also, can I change the "Done" button text? To remove the URL, just set the location option to "no". var ...
CSS练习用例: .event { border-radius:4px; -webkit-border-radius:4px; color:#FFFFFF; font-size:12px; margin:0px 30px; padding:2px 0px; } .event.received { background-color:#4B946A; display:none; } @keyframes fade { from { opacity: 1.0; } 50% { opa ...
参考: http://www.areaaperta.com/nicescroll/ 该插件支持移动设备; 可上下、左右拖拉滚动; 看图,上面的分类菜单就是。 导入: <script type="text/javascript" src="js/jquery.nicescroll.min.js"></script> 定义需要滚动的区域,#boxscroll是vieport, #categorys是content:。这里#categorys里的内容是动态生成的。 <div id="boxscroll ...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> <script src="HTML/js/jquery- ...
jquery.qrcode.js 是把它用jquery方式封装起来的,用它来实现图形渲染,其实就是画图(支持canvas和table两种方式) 导入包: <script type="text/javascript" src="js/jquery.qrcode.js"></script> 在html中加入一个div用于显示二维码 <div id="qrcode"></div> JS代码: var options = { render: 'div',//设置 ...
这个控件关键是它能支持在mobile中显示。iPhone和android中显示可能略有差别。 下图是在android中的显示效果: 再看一下用法 首先导入JQ和date picker插件: <link rel="stylesheet" type="text/css" href="css/picker/default.css" /> <link rel="stylesheet" type="text/css" href="css/picker/default. ...
在线演示 用法介绍: 分享一款超棒的jQuery旋钮插件 - jQuery knob http://anthonyterrien.com/knob/ 我要实现的效果: 就是需要下方有一个缺口,用于显示一些文字。 我利用knob只显示了这个圆环,其中的文本数字都是在div中显示的,跟knob无关! 首先导入jquery和knob插件: <script type="text/javascript" src="js/jquery-1.10.2.min.js"></script> <script type= ...
首先导入google map JS(需要VPN): <script src="http://maps.google.com/maps/api/js?v=3.5&sensor=false&libraries=places"></script> 然后定义一个地图显示区域: <div id="content_map"></div> 最后添加JS: ///////////////////////////////////////////////////////////////////////// ...
Global site tag (gtag.js) - Google Analytics