内容 参数   OS   Windows 10 x64   browser   Firefox 65.0.2   framework     Bootstrap 3.3.7   editor   Visual Studio Code 1.32.1     typesetting   Markdown   code <!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="U…
//strategy1是一个TextView SpannableStringBuilder builder1 = new SpannableStringBuilder(strategy1.getText().toString()); //设置前景色为蓝色 ForegroundColorSpan blue=new ForegroundColorSpan(Color.BLUE); //改变第0-3个字体颜色为蓝色 builder1.setSpan(blue,0,3, Spanned.SPAN_EXC…
1.定义不同的style <style name="approval_detail_info_style1"> <item name="android:textSize">@dimen/sp13</item> <item name="android:textColor">#666666</item> </style> <style name="approval…
  内容 参数   OS   Windows 10 x64   browser   Firefox 65.0.2   framework     Bootstrap 3.3.7   editor   Visual Studio Code 1.32.1     typesetting   Markdown   code <!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="U…
  内容 参数   OS   Windows 10 x64   browser   Firefox 65.0.2   framework     Bootstrap 3.3.7   editor   Visual Studio Code 1.32.1     typesetting   Markdown   code <!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="U…
https://blog.csdn.net/qq_20082961/article/details/73718363 以前做了一个流量悬浮窗,悬浮窗里有当前网络状态的图标和网速的文字,想实现改变文字颜色的同时改变状态图标的颜色  实现后分享出来让大家参考下 先上图 以下是关键代码 <ImageView android:id="@+id/iv_icon" android:layout_width="150dp" android:layout_height=&qu…
1.我们的app一般默认的名字是我们的工程名字,所以我们一般会更改一个更加友好的名字,更改的方法如下图: 找到InfoPlist.strings文件,在里面添加语句CFBundleDisplayName="你的APP的名字"; 2.关于怎么设置图标 选中你的工程的名字(图上1位置),然后向下拉,找到APP Icons把你向设置成的图标的图片直接拖进去进行了,但是对图片的大小是有要求的,第一个位置要是57*57 的图片,第二个位置是114*114的大小,以适应不同分辨率的设备.launc…
字体图标(Glyphicons),并通过一些实例了解它的使用.Bootstrap 捆绑了 200 多种字体格式的字形. 获取字体图标 我们已经在 环境安装 章节下载了 Bootstrap 3.x 版本,并理解了它的目录结构.在 fonts 文件夹内可以找到字体图标,它包含了下列这些文件: glyphicons-halflings-regular.eot glyphicons-halflings-regular.svg glyphicons-halflings-regular.ttf glyphi…
Windows 8.1——将网站固定到开始菜单,自定义图标.颜色和Windows推送通知 记得在IE 9和Windows 7刚出来那会儿我写过一篇文章来介绍如何自定义网站将其固定到Windows的任务栏上,同时自定义图标及任务内容.那个功能在IE 9中被称之为JumpList.http://www.cnblogs.com/jaxu/archive/2010/11/17/1879617.html Windows 8对该功能进行了增强,但仍然不够丰富.全新的Windows 8.1对其做了许多改进,包…
开门见山,先来三张效果图: 然后我们再来讲如何实现以及如何快速地实现. 如何实现 实现设置系统状态栏颜色需要至少在Android 4.4.2(API 19)以上.这是因为,在这个版本以下,没有任何的API可以帮助我们来实现.那么具体如何设置呢? Android 4.4.2 实现 Android 4.4.2新增了一个特性,即可以设置系统状态栏为半透明.设置方法有两种,一是通过在主题style中添加以下属性: <item name="android:windowTranslucentStatu…