在日常应用中,我们往往使用AFNetworking等第三方库来实现网络请求部分。这篇文章会简要地介绍一下如何使用NSURLConnection来进行异步的网络请求。我们先看一个小demo-
(void)viewDidLoad{ [super viewDidLoad]; // Do any...
分类:
移动开发 时间:
2014-05-09 12:37:08
阅读次数:
550
在索尼公司的PS3游戏机里面,游戏手柄是通过蓝牙协议与游戏主机进行无线通信的,一个名为
Dancing Pixel 的开发商开发了一款名为 Sixaxis Controller
的安卓应用,实现了PS3手柄与安卓设备(安卓手机或者平板)的蓝牙连接,现在我们有机会直接使用PS3手柄在安卓设备上面玩游戏...
分类:
移动开发 时间:
2014-05-09 09:27:19
阅读次数:
556
1.attr.xml 2.在构造方法中使用public MyView(Context
context,AttributeSet attrs){ super(context,attrs); mPaint = new Paint(...
分类:
移动开发 时间:
2014-05-08 23:01:34
阅读次数:
453
http://blog.csdn.net/niu_gao/article/details/7219641利用ffmpeg做图像的pixel
format转换你还在用libswscale吗?嘿嘿,过时啦!ffmpeg中有了新东西:libavfilter.使用它,可以完全代替libswscale,并且可...
分类:
其他好文 时间:
2014-05-08 18:58:11
阅读次数:
456
在Java的子类中,可以通过super来明确调用超类(也即父类)的方法。但当所调用的超类的方法(1)中又调用了其它的方法(2)时,由于Java默认动态绑定,所以方法(2)调用的是子类中的方法。如下,示例(1)是一般的子类调用超类方法(即所调用的超类中的方法不再调用其它的需要动态绑定的方法),示例(2)是特殊的子类调用超类方法。
示例(1):
package MyTest;
import jav...
分类:
编程语言 时间:
2014-05-07 05:15:14
阅读次数:
365
Pixel density题目描述Pixels per inch (PPI) or pixel
density is a measurement of the resolution of devices in various contexts;
typically computer displays...
分类:
其他好文 时间:
2014-05-07 02:23:38
阅读次数:
481
I’ve worked with a lot of programmers over the
years — some of them super amazing, and some distinctly lackluster. As I’ve had
the pleasure of working...
分类:
其他好文 时间:
2014-05-07 00:33:56
阅读次数:
586
通过实现父类的方法
protected void onSaveInstanceState(Bundle outState)
{
super.onSaveInstanceState(outState);
String str = editText.getText().toString();
outState.putString("key", "message");
}
这样就保存到了B...
分类:
其他好文 时间:
2014-05-06 21:46:12
阅读次数:
405
做数独游戏开发时,需要将Activity的标题隐藏,隐藏的方式可分为以下两种:1:在AndroidManifest.xml中将Application添加
2:在super执行后,设置窗口显示的规则。在此会遇到一些问题。当手机反应慢时,很显示标题之后再隐藏。
分类:
其他好文 时间:
2014-05-06 13:49:50
阅读次数:
272
Super Jumping! Jumping! Jumping!
Time Limit : 2000/1000ms (Java/Other) Memory Limit : 65536/32768K (Java/Other)
Total Submission(s) : 6 Accepted Submission(s) : 5
Font: Times New Roman | Verdan...
分类:
其他好文 时间:
2014-05-03 16:47:07
阅读次数:
262