先看效果:ListView的footer布局:
ListView的item和main_activity布局很简单,分别是一个TextView和ListView,不再贴出。MainActivity代码贴出:import
java.util.ArrayList;import java.ut...
分类:
移动开发 时间:
2014-07-22 23:17:33
阅读次数:
592
Cultural blocks1) TaboosPing-pong ball
exerciseTaboos can remove entire families of solutions from the ready grasp of
the problem-solver. This is not ...
分类:
其他好文 时间:
2014-04-30 18:17:21
阅读次数:
462
$sql = "select * from student
";获取全部数据isset()判断$myaql_connect连接数据库$myaql_close结束连接数据库include(""."")连接页面mysql_query()向与指定的连接标识符关联的服务器中的当前活动数据库发送一条查询mys...
分类:
其他好文 时间:
2014-04-30 18:09:17
阅读次数:
396
package com.szy.dialogs;import
android.app.Activity;import android.app.AlertDialog;import
android.app.Dialog;import android.app.ProgressDialog;import ...
分类:
其他好文 时间:
2014-04-30 17:44:51
阅读次数:
459
java中结合struts2自定义标签的使用一、建立一个继承于SimpleTagSupport类实现它的doTag方法
1 package com.xiangshang.tag; 2 3 import java.io.IOException; 4 import
java.util.List; 5 ....
分类:
编程语言 时间:
2014-04-30 16:51:52
阅读次数:
619
Applies to: Oracle Server - Enterprise Edition
- Version 11.1.0.6 to 11.2.0.4 [Release 11.1 to 11.2]Information in this
document applies to any platfo...
分类:
数据库 时间:
2014-04-30 15:38:17
阅读次数:
624
1 package com.xiangshang.listener; 2 3 import
java.util.Timer; 4 import java.util.TimerTask; 5 6 import
javax.servlet.ServletContextEvent; 7 import...
分类:
编程语言 时间:
2014-04-30 15:02:55
阅读次数:
528
//guI; graphics user interfaceimport
javax.swing.*;import java.awt.*; public class Main { public static void
main(String[] args) { JFra...
分类:
其他好文 时间:
2014-04-29 16:48:47
阅读次数:
313
1.sqlplus /nolog2.connect sys/orcl@ORCL as
sysdba3.select sysdate from dualexit;
分类:
数据库 时间:
2014-04-29 16:42:47
阅读次数:
480
数据库中两个字段相减(某列有空值)处理方法:sql server中:select
(isnull(字段1,0)-isnull(字段2,0)) as 结果 from 表oracle中:select (nvl(字段1,0)-nvl(字段2,0))
as 结果 from 表mysql中:select (i...
分类:
数据库 时间:
2014-04-29 16:42:46
阅读次数:
925