logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

Git 的BUG小结

Git 的BUG小结Git 在push的时候出现了:fatal: The remote end hung up unexpectedly在网上找了很多发现出现了以下错误提示也可能是相同的问题:error: RPC failed; result=22, HTTP code = 411fatal: The remote end hung up unexpectedlyfatal: The remote

#git
mac安装brew 软件包管理工具Homebrew

mac 安装 brewHomebrewbrew 全称Homebrew是Mac OSX上的软件包管理工具Homebrew 安装和卸载工具 只用一行命令就能完成官方地址:http://brew.sh/index.htmlmac 自带ruby打开命令行terminal输入:ruby -version1) 安装命令ruby -e "$(curl -fsSL https://raw.github.com/H

android photoview 图片放大缩放功能 ImageView

android 图片浏览功能图片放大缩小使用 photoview 双击或双指缩放的ImageView使用多点触控和双击。滚动,以平滑滚动甩。github下载地址:https://github.com/chrisbanes/PhotoView实际效果参考图片来自 : http://a.code4app.com/android/PhotoView/5241a4026803fa1327000000下载完

#android
错误解决 :Invalid byte 3 of 3-byte UTF-8 sequence.

最近使用ant 多渠道打包老是编译不成功 提示如下错误I/O error for /wemicommunity/AndroidManifest.xml: Invalid byte 3 of 3-byte UTF-8 sequence.网上查了很多资料后 认定是字符编码问题应该是在其它编码格式文件直接粘贴到UTF-8 编码格式的项目里 导致了乱码具体解决办法是1使用记事本打开2另存为使用UFT-8

#android
Android HorizontalScrollView 水平滑动 在listview上面动态添加图片

Android HorizontalScrollView水平滑动listview 上动态添加图片最近遇到了个 在listview展示广告的需要动态添加图片如图:使用了 horizontalScrollView在listview上进行添加java代码:package com.baozi.bzhorizontalscrollview;import java.util.ArrayList;import

Zxing图片识别 从相册选二维码图片解析总结

Zxing图片识别 从相册选取二维码图片进行解析总结在Zxing扫描识别和图片识别的解析对象是相同的本文分三个步骤:1 获取相册的照片2 解析二维码图片3 返回结果1) 获取相册照片google对4.4的uri做了点改动为了适配多种手机 需要做一个判断版本在Activity中开启相册:Intent innerIntent = new Intent(); // "android.intent.act

#android
The type List is not generic; it cannot be parameterized with arguments <Integer>

The type List is not generic; it cannot be parameterized with arguments <Integer>今天写一个list 报了这个莫名其妙的警告List<Integer> list1 = new ArrayList<Integer>();发现是包导错了import java.awt.List;换成 util包就好了import java.

暂无文章信息