自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(8)
  • 收藏
  • 关注

原创 集合框架Stack容器

public class Stack  extends  Vector  {      是Vector的子类 push(E item)     把项压入堆栈顶部。       pop()   移除堆栈顶部的对象,并作为此函数的值返回该对象。   peek()    查看堆栈顶部的对象,但不从堆栈中移除它。 boolean empty()   测试堆栈是否为空。  

2016-02-25 01:37:14 291

原创 网络编程(自定义缓存图片)

import java.io.File;import java.io.FileOutputStream;import java.io.IOException;import java.net.URLEncoder;import java.text.SimpleDateFormat;import java.util.Date;import java.util.Locale;import

2015-01-10 00:55:17 399

原创 网络编程(获取json和网络图片)

package com.itheima.netxml;import java.io.StringReader;import java.util.ArrayList;import java.util.List;import org.apache.http.Header;import org.json.JSONArray;import org.json.JSONException;i

2015-01-10 00:52:09 681

原创 什么是ANR

耗时操作 1.什么是ANR  在应用程序的主线程中执行一段耗时的代码, 就有可能出现ANR异常.  耗时的代码未执行结束时, 界面会卡住, 用户对界面进行了操作, 10秒之后耗时代码如果还未结束, 就会出现ANR异常  * 2.怎么避免ANR  主线程中不要执行耗时的代码  如果一定要做耗时的事情, 开启新线程, 在新线程中执行 3.UI Thread  安卓手机中

2015-01-09 20:32:12 597

原创 读取与写入android中的联系人

package com.example.mycontact;import java.util.ArrayList;import android.content.ContentProvider;import android.content.ContentProviderOperation;import android.content.ContentResolver;import and

2015-01-09 20:24:59 459

原创 ContentProvider ,ContentObserver 和ContentResolver

1ContentProvider 是共享数据2ContentObserver是监听数据3ContentObserver是解析数据 这个是测试程序,是用来接收另一个程序的信息public class TestContent extends AndroidTestCase{ public void testInsert(){ ContentResolver resolver

2015-01-07 02:21:54 697

原创 昨天的笔记

public class NewAccountDao { private MyHelper helper; public NewAccountDao(Context context) { helper = new MyHelper(context); } public long insert(Account a) { SQLiteDatabase db = helper.ge

2015-01-06 03:18:57 442

原创 ListView与适配器

一开始先来一个简单的ListView看一下layout的文件,写了一个ListView。<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="ma

2015-01-03 21:30:52 444

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除