上一页 1 ··· 3 4 5 6 7 8 9 下一页
摘要: 现在android网络方面的第三方库很多,volley,Retrofit,OKHttp等,各有各自的特点,这边博客就来简单介绍下如何使用OKHttp。梗概OKHttp是一款高效的HTTP客户端,支持连接同一地址的链接共享同一个socket,通过连接池来减小响应延迟,还有透明的GZIP压缩,请求缓存等... 阅读全文
posted @ 2015-12-29 17:04 在路上的白羊 阅读(264) 评论(0) 推荐(0) 编辑
摘要: Ctrl+Alt+Space(空格键),类名或接口名提示Ctrl+Shift+Space 自动补全代码Ctrl+Space 代码提示(可能跟切换输入法冲突,建议改改)----常用快捷键 1.Ctrl+E,可以显示最近编辑的文件列表 2.Shift+Click可以关闭文件 3.Ctrl+[或]可... 阅读全文
posted @ 2015-12-29 16:56 在路上的白羊 阅读(204) 评论(0) 推荐(0) 编辑
摘要: android 端:private void HttpPostData() { try { HttpClient httpclient = new DefaultHttpClient(); String uri = "http://193.168.1.102:8080/project/ans... 阅读全文
posted @ 2015-12-27 21:39 在路上的白羊 阅读(376) 评论(0) 推荐(0) 编辑
摘要: package com.cnn.httpdemo02;import android.app.Activity;import android.os.Bundle;import android.view.Menu;import android.view.MenuItem;import android.v... 阅读全文
posted @ 2015-12-27 20:04 在路上的白羊 阅读(272) 评论(0) 推荐(0) 编辑
摘要: package com.cnn.httpdemo01;import android.app.Activity;import android.content.Intent;import android.os.Bundle;import android.view.Menu;import android.... 阅读全文
posted @ 2015-12-27 20:03 在路上的白羊 阅读(265) 评论(0) 推荐(0) 编辑
摘要: package com.zx.httpclient01;import android.app.Activity;import android.os.Bundle;import android.view.Menu;import android.view.MenuItem;import android.... 阅读全文
posted @ 2015-12-27 20:02 在路上的白羊 阅读(351) 评论(0) 推荐(0) 编辑
摘要: package com.cnn.imageasyncdemo01;import android.app.Activity;import android.content.Intent;import android.os.Bundle;import android.view.Menu;import an... 阅读全文
posted @ 2015-12-26 20:17 在路上的白羊 阅读(164) 评论(0) 推荐(0) 编辑
摘要: package com.cnn.asynctask;import android.app.Activity;import android.content.Intent;import android.os.Bundle;import android.view.Menu;import android.v... 阅读全文
posted @ 2015-12-23 22:50 在路上的白羊 阅读(176) 评论(0) 推荐(0) 编辑
摘要: package com.cnn.scrollviewdemo01;import android.R.integer;import android.annotation.SuppressLint;import android.app.Activity;import android.os.Bundle;... 阅读全文
posted @ 2015-12-23 21:30 在路上的白羊 阅读(221) 评论(0) 推荐(0) 编辑
摘要: @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_... 阅读全文
posted @ 2015-12-23 20:45 在路上的白羊 阅读(201) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 下一页