最终在团队的气氛下还是拿回了source insight编译器:Source
Insight实质上是一个支持多种开发语言(java,c ,c
等等)的编辑器,只不过由于其查找、定位、彩色显示等功能的强大,常被我们当成源代码阅读工具使用。作为一个开放源代码的操作系统,Linux附带的源代码库使得广大爱...
分类:
其他好文 时间:
2014-05-12 16:26:05
阅读次数:
348
function checkmemory%Copyright (c) 2014,Lv Qi%All
rights reserved.%%Redistribution and use in source and binary forms, with or
without modification, a...
分类:
其他好文 时间:
2014-05-10 20:07:52
阅读次数:
413
import android.app.AlertDialog;import
android.content.Context;import android.content.DialogInterface;import
android.text.TextUtils;import android.widg...
分类:
移动开发 时间:
2014-05-06 00:07:01
阅读次数:
307
1.自定义圆形控件github地址:https://github.com/hdodenhof/CircleImageView主要的类:package de.hdodenhof.circleimageview;
import edu.njupt.zhb.main.R;
import android.content.Context;
import android.content.res.TypedAr...
分类:
移动开发 时间:
2014-05-03 23:56:53
阅读次数:
3250
Zxing图片识别 从相册选取二维码图片进行解析总结
在Zxing扫描识别和图片识别的解析对象是相同的
本文分三个步骤:
1 获取相册的照片
2 解析二维码图片
3 返回结果
1) 获取相册照片
google对4.4的uri做了点改动 为了适配多种手机 需要做一个判断版本
在Activity中开启相册:
Intent innerIntent = new Intent(); // "android.intent.action.GET_CONTENT"
if (Build.VE...
分类:
其他好文 时间:
2014-05-03 17:36:19
阅读次数:
389
1 package com.example.sqlitetest; 2 3 import
java.util.ArrayList; 4 import java.util.List; 5 import
android.content.ContentValues; 6 import and...
分类:
移动开发 时间:
2014-05-02 20:35:24
阅读次数:
540
UGC是“user generated
content”的缩写,中文可译为“用户生产内容”,即网友将自己DIY的内容通过互联网平台进行展示或者提供给其他用户。UGC在中国是伴随着以提倡个性化为主要特点的WEB2.0的概念兴起的。?基本概念
在web2.0时代,网络上内容的产出主要是由用户,每一个用....
分类:
其他好文 时间:
2014-05-02 17:29:00
阅读次数:
529
HTML中META属性详解meta是html语言head区的一个辅助性标签。几乎所有的网页里,我们可以看到类似下面这段的html代码:
<head> <meta http-equiv= "content-Type " content= "text/html; charset=gb2312
">...
分类:
Web程序 时间:
2014-05-02 12:02:03
阅读次数:
314
你可以直接存储数据到内部存储中,默认情况下,文件存储到内部存储中是私有的,不能被
其他程序访问,当卸载应用程序,这些文件会被移除。
创建并写入数据可以有两种方法:
使用java中的相关的方法,使用android.content中的相关方法,
调用 openFileOutput(),并返回FileOutputStream对象调用FileOutputStream对象的wr...
分类:
移动开发 时间:
2014-05-02 07:13:48
阅读次数:
410
启动界面的效果图:
实现的原理:在一个线程中让几幅图片进行循环显示,实现了动画的效果。
主要的实现类LoadingView是自定义控件,继承了ImageView,实现了Runnable接口 :
package wht.android.loading;
import android.content.Context;
import android.graphics.Canvas;
imp...
分类:
移动开发 时间:
2014-05-02 05:06:02
阅读次数:
371