摘要:
Activity1 到Activity2 用startActivityForResult 如果Activity2的launchMode为 singleInstance 和 singleTask 都会启动失败. Activity1的launchMode为singleInstance也会启动失败.singleTask可以 用startActivity就两边都可以随便设置 阅读全文
摘要:
((Button) v).getCompoundDrawables()[1].setColorFilter(new ColorMatrixColorFilter(BT_NOT_SELECTED)); android 使用ColorMatrix把图变成灰色 阅读全文
摘要:
extends:http://blog.csdn.net/alvinhuai/article/details/8955127,http://mikespook.com/2010/11/android-%E5%AE%9E%E6%97%B6%E8%8E%B7%E5%8F%96%E9%BA%A6%E5%8 阅读全文
摘要:
byte数组和short数组转换 阅读全文
摘要:
最近在搞毕业设计,做的是有关语音识别的手机应用。在处理音频的过程中,发现需要用short数组处理音频,可能光用byte会越界。但是java读文件没有一次性读到short数组中的api,要么是一个一个读short,要么读到byte数组后人工转为short数组。前者的行为和c++行为正好相反,主要是高低 阅读全文
摘要:
System.out.println(TextUtils.isEmpty(null)); System.out.println(TextUtils.isEmpty("")); 阅读全文
摘要:
JSONArray ja = new JSONArray(); ja.put("11"); ja.put("22"); ja.put("33"); JSONArray ja2 = new JSONArray(); ja2.put("aa"); ja2.put(... 阅读全文
摘要:
/** * 生成随机文件名:当前年月日时分秒+五位随机数 * * @return */ public static String getRandomFileName() { SimpleDateFormat simpleDateFormat; simpleDateFormat =... 阅读全文
摘要:
//android把图片文件添加到相册 public static ContentValues getImageContentValues(Context paramContext, File paramFile, long paramLong) { ContentValues localConte 阅读全文
摘要:
//横竖屏切换 阅读全文