上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 70 下一页
摘要: 在上篇文章中有提到过,Volley是将AsyncHttpClient和Universal-Image-Loader的优点集成于一身的一个框架。我们都知道,Universal-Image-Loader具备非常强大的加载网络图片的功能,而使用Volley,我们也可以实现基本类似的效果,并且在性能上也豪不 阅读全文
posted @ 2016-03-15 17:26 新感觉 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 我们平时在开发Android应用的时候不可避免地都需要用到网络技术,而多数情况下应用程序都会使用HTTP协议来发送和接收网络数据。Android系统中主要提供了两种方式来进行HTTP通信,HttpURLConnection和HttpClient,几乎在任何项目的代码中我们都能看到这两个类的身影,使用 阅读全文
posted @ 2016-03-15 17:05 新感觉 阅读(236) 评论(0) 推荐(0) 编辑
摘要: ThreadLocal是什么 早在JDK 1.2的版本中就提供java.lang.ThreadLocal,ThreadLocal为解决多线程程序的并发问题提供了一种新的思路。使用这个工具类可以很简洁地编写出优美的多线程程序。 当使用ThreadLocal维护变量时,ThreadLocal为每个使用该 阅读全文
posted @ 2016-03-11 18:45 新感觉 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 1. Parcelable接口 Interface for classes whose instances can be written to and restored from a Parcel。 Classes implementing the Parcelable interface must 阅读全文
posted @ 2016-03-11 09:59 新感觉 阅读(245) 评论(0) 推荐(0) 编辑
摘要: MainActivity如下: package cc.c; import android.app.Activity; import android.os.Bundle; import android.os.Handler; import android.os.Looper; import andro 阅读全文
posted @ 2016-03-09 17:22 新感觉 阅读(13886) 评论(0) 推荐(0) 编辑
摘要: 当给ListView加了一个HeaderView后(代码如下),我们发现,onItemClick方法里的position参数的值不是我们所期望的,比如点击ListView的第一行,我们期望的position是0,可是实际上却是1,也就是说,它是从Header而不是从第一行开始计数的。 1 2 3 4 阅读全文
posted @ 2016-02-18 10:12 新感觉 阅读(258) 评论(0) 推荐(0) 编辑
摘要: TextView的xml [html] view plain copy <TextView android:id="@+id/textciew1" android:layout_width="match_parent" android:layout_height="wrap_content" and 阅读全文
posted @ 2016-02-17 14:29 新感觉 阅读(5891) 评论(0) 推荐(1) 编辑
摘要: 转载请标明出处:http://blog.csdn.net/lmj623565791/article/details/38067475 1、概述 Android提供了几种动画类型:View Animation 、Drawable Animation 、Property Animation 。View 阅读全文
posted @ 2016-02-02 18:40 新感觉 阅读(249) 评论(0) 推荐(0) 编辑
摘要: 环境为:AndroidStudio 1.0.2如果是jar文件的话,请直接拷贝jar文件到项目的libs文件夹下,然后运行:Sync Project with Gradle Files。如下图2中方式均可。一:或者:这2种方法均可。如何将so文件导入到androidstudio的项目中呢?需要在项目... 阅读全文
posted @ 2016-01-21 18:30 新感觉 阅读(208) 评论(0) 推荐(0) 编辑
摘要: Gradle 是以 Groovy 语言为基础,面向Java应用为主。基于DSL(领域特定语言)语法的自动化构建工具。Gradle可以自动化地进行软件构建、测试、发布、部署、软件打包,同时也可以完成项目相关功能如:生成静态网站、生成文档等。Gradle集合了Ant的灵活性和强大功能,同时也集合了Mav... 阅读全文
posted @ 2015-12-30 18:02 新感觉 阅读(1146) 评论(0) 推荐(0) 编辑
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 70 下一页