notifyDataSetChanged方法通过一个外部的方法控制如果适配器的内容改变时需要强制调用getView来刷新每个Item的内容。public
void notifyDataSetChanged ()该方法内部实现了在每个观察者上面调用onChanged事件。每当发现数据集有改变的情况,或...
分类:
移动开发 时间:
2014-05-12 09:14:07
阅读次数:
342
import java.util.*;
//泛型定容栈
//泛型:类型参数化,便于处理不同类型的数据
public class FixedCapacityStack {
private Item[] a;
private int N;
public FixedCapacityStack(int cap){
// java中不允许直接创建泛型数组,此处用类型转换来实现
// 这样写...
分类:
其他好文 时间:
2014-05-11 15:05:07
阅读次数:
233
重写Baseadapter时,我们·知道需要重写以下四个方法:getCount,getItem(int position),getItemId(int position),getView方法,
getCount决定了listview一共有多少个item,而getView返回了每个item项所显示的view。
可是getItem(int position),getItemId(int posit...
分类:
移动开发 时间:
2014-05-11 14:01:20
阅读次数:
424
import java.util.Iterator;
import java.util.Scanner;
public class Stack implements Iterable {
private Node first;// 栈顶
private int N;// 元素数量
// 定义结点的嵌套类
private class Node{
Item item;
Node nex...
分类:
其他好文 时间:
2014-05-11 13:20:22
阅读次数:
257
---恢复内容开始---一、前段代码二、接下来新建一个下拉列表的视图资源,即每个Item的TextView,我们把它命名为dropdown.xml,我们把它放到drawable中,代码为:三、创建Adapter这里介绍下两个函数:1.ArrayAdapter.ArrayAdapter(Context...
分类:
移动开发 时间:
2014-05-10 20:56:30
阅读次数:
435
用asp打开光驱!
Set oWMP = CreateObject("WMPlayer.OCX.7")
Set colCDROMs = oWMP.cdromCollection
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next ' cdr...
分类:
Web程序 时间:
2014-05-10 04:52:15
阅读次数:
309
public View getView(int position, View
convertView, ViewGroup parent) { View view = inflater.inflate(R.layout.gv_item,
null); TextView tv = (TextV...
分类:
其他好文 时间:
2014-05-10 00:41:22
阅读次数:
283
获取api的时候,获取回来的特殊对象
$eBayTime = $responseDoc->getElementsByTagName('Timestamp');
object(DOMNodeList) $eBayTime
这种对象,取长度 $eBayTime->length
取值 $eBayTime->item(0)
取值的对象是 object(DOMElement) $eBay...
分类:
其他好文 时间:
2014-05-09 22:07:07
阅读次数:
288
from:
http://hi.baidu.com/dashi6174/item/e85dcc321336c9c12f8ec21c?qq-pf-to=pcqq.c2cLinux的bg和fg命令我们都知道,在
Windows 上面,我们要么让一个程序作为服务在后台一直运行,要么停止这个服务。而不能让程...
分类:
系统相关 时间:
2014-05-09 19:54:21
阅读次数:
349
在ASP.NET的Repeater控件,实现隔行变色,是极简单的事情。因为它有ListItemType.Item和ListItemType.AlternatingItem模版。如果在普通的表格(Table)来实现隔行变色,就得使用css样式与jQuery来解决。先来看看原始的表格样式:打开视图:在视...
分类:
其他好文 时间:
2014-05-09 19:22:54
阅读次数:
367