在imooc上看了eclipse_xu的课程《Android图像处理》,照葫芦画瓢写了一个Demo:
看一下效果图:
核心代码:package com.zms.imageprocess;import android.app.Activity;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import...
分类:
移动开发 时间:
2015-04-03 09:20:52
阅读次数:
172
The calculation of GPA
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 21967 Accepted Submission(s): 5046
Problem Description
每学...
分类:
其他好文 时间:
2015-04-03 09:20:59
阅读次数:
161
今天学习了android蓝牙方面的基础知识,包含了打开和关闭蓝牙的操作,以及两部手机之间通过蓝牙实现的数据传输。下面看代码:
首先,需要在清单文件里添加蓝牙操作的权限:
打开蓝牙的两种方式:
第一种:Intent intent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
startActivityForResult(in...
分类:
移动开发 时间:
2015-04-03 09:22:38
阅读次数:
582
按自己的思想简单写了一下,多多交流。#include "stdafx.h"
int insertInOrder(int *a,int num,int len){
int position;
if (a[0]==0)
{
a[0] = num;
position = 1;
}
for (int i = 0; i a[i] && n...
分类:
其他好文 时间:
2015-04-03 09:22:10
阅读次数:
120
N!Again
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 3871 Accepted Submission(s): 2070
Problem Description
WhereIsHeroFrom: ...
分类:
其他好文 时间:
2015-04-03 09:21:10
阅读次数:
113
使用HTML5 跨域共享特性解决AJAX跨域数据同步问题...
分类:
Web程序 时间:
2015-04-03 09:20:27
阅读次数:
195
UVA - 10716
Evil Straw Warts Live
Time Limit: 3000MS
Memory Limit: Unknown
64bit IO Format: %lld & %llu
Submit Status
Description
Problem D: Evil Straw Warts...
分类:
其他好文 时间:
2015-04-03 09:22:28
阅读次数:
134
bestcoder #35 AB详细题解+代码~...
分类:
其他好文 时间:
2015-04-03 09:19:38
阅读次数:
133
题目链接:word-search
/**
*
Given a 2D board and a word, find if the word exists in the grid.
The word can be constructed from letters of sequentially adjacent cell,
where "adjacent" cells...
分类:
其他好文 时间:
2015-04-03 09:19:28
阅读次数:
148
圆桌会议
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 3356 Accepted Submission(s): 2351
Problem Description
HDU ACM集训队的队员在暑假集训时经常要讨论自...
分类:
其他好文 时间:
2015-04-03 09:19:06
阅读次数:
137
Binding 的源也就是数据的源头。Binding对源的要求并不苛刻------只要它是一个对象,并且通过属性(Property)公开自己的数据,它就能作为Binding 的源。
前面一个例子已经向大家证明,如果想让作为Binding源的对象具有自动通知Binding自己属性值已经已经变化的能力,那么就需要让类实现INotifyChanged接口并在属性的Set语句中激发Pro...
本函数实现增加或设置对象object一个属性名称name,并设置相应的值value。一般情况与getattr()配套使用。例子:#setattr()
class Foo:
pass
foo = Foo()
setattr(foo, 'name', 'caijunsheng')
print(foo.name)结果输出如下:caijunsheng蔡军生 QQ: 9073204 ...
分类:
编程语言 时间:
2015-04-03 09:21:31
阅读次数:
141
敌兵布阵
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 51303 Accepted Submission(s): 21473
Problem Description
C国的死对头A国这段时间正在进...
分类:
其他好文 时间:
2015-04-03 09:21:09
阅读次数:
124