- 浏览: 116556 次
- 性别:
- 来自: 北京
最新评论
-
YaoSone:
你好,这个失效了,能帮忙再分享一下吗,谢谢了
IT十八掌 大数据技术资料+内部资料 -
yangcongyangling:
非常不错,学习中
IT十八掌 大数据技术资料+内部资料 -
ceekay_:
[flash=200,200][url][img][list] ...
android遍历sd卡中的所有文件 -
laohujibuzhu:
看看效果先
android ShapeDrawable实例 -
dengrui0917:
最近我也要做一个将图片压缩成气泡状的图片,下载研究一下
android ShapeDrawable实例
文章列表
教程介绍:
IT十八掌 大数据技术资料+内部资料
目录
技术资料
[IT十八掌大数据_徐培成]001.Hadoop介绍.avi
[IT十八掌大数据_徐培成]002.VMware安装.avi
[IT十八掌大数据_徐培成]003.Ubuntu下载与虚拟机下安装.avi
[IT十八掌大数据_徐培成]004.Ubuntu常用命令.avi
[IT十八掌大数据_徐培成]005.Ubuntu目录和权限
[IT十八掌大数据_徐培成]006.Ubuntu软件包桌面程序以及增强工具
目前学习hadoop,从网上找了一些比较好的免费视频存放在网盘上面,有需要的可以去下载 1.[IT十八掌www.it18zhang.com]00.Hadoop介绍 2.[IT十八掌www.it18zhang.com]02.VMware安装 3.[IT十八掌www.it18zhang.com]03.Ubuntu下载与虚拟机下安装 4.[IT十八掌www.it18zhang.com]04.Ubuntu常用命令 5.[IT十八掌www.it18zhang.com]05.Ubuntu目录和权限 6.[IT十八掌www.it18zhang.com]06.Ubuntu软件包桌面程序以及增强工具 7.[I ...
http://www.2cto.com/kf/201204/126987.html
http://www.2cto.com/kf/201111/111716.html
http://www.open-open.com/lib/view/open1328834050046.html
http://blog.csdn.net/gmailtoyou/article/details/6763447 lauch循环切换
http://www.eoeandroid.com/thread-156452-1-1.html 字体飞跃
clock时钟
- 博客分类:
- android 开发
- clock时钟
import java.util.Date;
import android.appwidget.AppWidgetManager;
import android.appwidget.AppWidgetProvider;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Matr ...
播放图片的类
- 博客分类:
- android 开发
public class GGView extends View {
int COMPONENT_WIDTH; //该控件宽度
int COMPONENT_HEIGHT; //该控件高度
boolean initflag=false; //是否要获取控件的高度和宽度标志
static Bitmap[] bma; //需要播放的图片的数组
Paint paint; / ...
import java.io.Serializable;
import java.util.concurrent.ArrayBlockingQueue;
import java.util.concurrent.LinkedBlockingQueue;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.TimeUnit;
public class Mian1 {
/**
* @param args
*/
private static int produce ...
(一) 查询数据库没有关闭游标
描述:
程序中经常会进行查询数据库的操作,但是经常会有使用完毕Cursor后没有关闭的情况。如果我们的查询结果集比较小,对内存的消耗不容易被发现,只有在常时间大量操作的情况下才会复现内存问题,这样就会给以后的测试和问题排查带来困难和风险。
示例代码:
Cursor cursor = getContentResolver().query(uri ...);
if (cursor.moveToNext()) {
... ...
}
修正示例代码:
Cursor cursor = null;
try {
cur ...
public class LocationUtil {
public static void getLoc(Context context){
LocationManager locationManager = (LocationManager) context.getSystemService(Context.LOCATION_SERVICE );
Location location = locationManager.getLastKnownLocation(LocationManager.GPS_PROVIDER);
final long maxAgeMill ...
package com.fdgfdg;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import android.app.Activity;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.util.Log;
import android.view.MotionEvent;
import androi ...
public boolean onTouchEvent(MotionEvent event) { if(mAction == TOUCH_ACTION_MOVE){ return false; } boolean consumed = mGestureDetector.onTouchEvent(event);// if (event.getAction() == MotionEvent.ACTION_UP) {// if (mIsTouched || mIsDragging) {// processScrollSnap();// processGesture();// ...
final WallpaperManager wpm = WallpaperManager.getInstance(context); ComponentName cn = new ComponentName("包", "包+类"); IWallpaperManager iwmp = wpm.getIWallpaperManager(); try { iwmp.setWallpaperComponent(cn); // Setting a Live wallpaper doesn't generate a // WALLPAPER_C ...
在android的开发中,经常会遇见一句话,比如“我今年23岁了”;这个23需要在程序中生成,但是遇到一个问题,这完整的一句话是一个TextView中的,而不是三个textView拼接成的,而且是引用的string.xml文件中写好的;使用字符串拼接也可以实现,但是特别麻烦;
今天遇到一个好方法,在string.xml中,不仅可以设置文字的格式换行等,还可以设置类似于变量的文本格式;
1、整型,比如“我今年23岁了”,这个23是整型的。在string.xml中可以这样写,<string name="old">我今年%1$d岁了</string> ...
Eclipse 编译 Android工程时,提示该错误 :Error generating final archive: Debug certificate expired on xxxxxx(日期)解决办法:进入:C:\Documents and Settings\Administrator\.android删除:debug.keystore及 ddms.cfgEclipse 编译 Android工程时,提示该错误 :Error generating final archive: Debug certificate expired on xxxxxx(日期)解决办法:进入:C:\Documen ...
如果要使插件开发应用能有更好的国际化支持,能够最大程度的支持中文输出,则最好使 Java文件使用UTF-8编码.然而,Eclipse工作空间(workspace)的缺省字符编码是操作系统缺省的编码,简体中文操作系统(Windows XP、Windows 2000简体中文)的缺省编码是GB18030,在此工作空间中建立的工程编码是GB18030,工程中建立的java文件也是GB18030.如果要使新建立工程,java文件直接使UTF-8则需要做以下工作: 1、windows->Preferences...打开"首选项"对话框,左侧导航树,导航到general- ...