码市免费版本只允许5个私有git仓库,一言不合就自己搭gitblit仓库。具体步骤如下:

no Pain no Gain no Gavin

Android经常会使用shape来定制一些View的背景,可以修改View的背景颜色,形状等属性。一般情况下,shape都是在xml文件里面实现,比如:
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<solid android:color="#1d3c80" />
<corners android:radius="@dimen/dim30" />
</shape>
textView.setAutoLinkMask(Linkify.ALL);
或者在xml布局文件中 android:autoLink=”all”
Pattern pattern = Pattern.compile(“\\d{5,}”);
Linkify.addLinks(mTv_kuaibao, pattern, “tel:”);
最后:防止点击事件冲突,在TextView的根部局中加入
android:descendantFocusability=”blocksDescendants”
android:autoLink=”phone”
android:autoLink=”web”
FireFox下面竟然有个开脑洞的扩展:
https://addons.mozilla.org/zh-CN/firefox/addon/chrome-store-foxified/
Enables the Google Chrome Store for Firefox. Point and click to install Chrome extensions straight into Firefox.
Eclipse Logcat Viewer支持各种形式的过滤规则的——Search for messages. Accepts Java regexes. Prefix with pid:, app:, tag or text: to limit scope.