上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 67 下一页
摘要: 模拟,过程类似求gcd,每次减去最小的边即可。 阅读全文
posted @ 2016-03-16 22:22 UniqueColor 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 提交成功时,从服务器端返回数据“load success” 用户名、密码正确后成功登录,并且在服务器端的文件保存目录上看到了从客户端上传的图片。 客户端代码: MainActivity.java activity_main.xml 清单里注册权限:<uses-permission android:n 阅读全文
posted @ 2016-03-16 13:05 UniqueColor 阅读(627) 评论(0) 推荐(0) 编辑
摘要: 如下实现的是简单的更新主UI的方法,用Handler消息机制 将textview的内容每隔一秒实现num++   /* * handler消息机制 * asynctask异步任务 *  * httpclient完成 android客户端向服务器传递数据: * get * post *  * 主UI线 阅读全文
posted @ 2016-03-15 13:04 UniqueColor 阅读(320) 评论(0) 推荐(0) 编辑
摘要: 实现效果:       /*采用异步任务  AsyncTask<String,Integer, byte[]>  * 参数一代表 执行异步任务时传递的参数的类型  * 参数二 如果不采用进度,则填Void,否则填 Integer  * 参数三 是指网络回传回来的数据类型  */   客户端代码: M 阅读全文
posted @ 2016-03-15 12:45 UniqueColor 阅读(343) 评论(0) 推荐(0) 编辑
摘要: ArrayAdapter 普通的显示listView子项,安卓的内置对象 使用方法: 1 /* 2 ListView :列表 3 通常有两个职责: 4 a.将数据填充到布局 5 b.处理点击事件 6 7 一个ListView创建需要几个元素: 8 a.ListView中第一列的 View 9 b.填 阅读全文
posted @ 2016-03-08 16:07 UniqueColor 阅读(210) 评论(0) 推荐(0) 编辑
摘要: 本文实现如下效果 Test_Grid.java public class Test_Grid extends Activity { private GridView gridview; private int[] ids={R.drawable.s1,R.drawable.s2,R.drawable 阅读全文
posted @ 2016-03-08 15:39 UniqueColor 阅读(173) 评论(0) 推荐(0) 编辑
摘要: BaseAdapter可以实现自定义的丰富子项视图,本文实现如下所示结果: 实现代码: 1 /* 2 ListView :列表 3 4 BaseAdapter 通用的基础适配器 5 6 7 8 * 9 * */ 10 public class BaseAdapter_test extends Act 阅读全文
posted @ 2016-03-08 15:33 UniqueColor 阅读(216) 评论(0) 推荐(0) 编辑
摘要: SimpleAdapter是安卓内置的适配器,本文展示的是listview的子项为{图片,文件}组合 如下图所示: 具体代码: SimpleAdapter_test.java 1 /* 2 ListView :列表 3 通常有两个职责: 4 a.将数据填充到布局 5 b.处理点击事件 6 7 一个L 阅读全文
posted @ 2016-03-08 15:27 UniqueColor 阅读(199) 评论(0) 推荐(0) 编辑
摘要: Problem Description These few days, Baby Ming is addicted to playing a matrix game. Given a n∗m matrix, the character in the matrix(i∗2,j∗2) (i,j=0,1, 阅读全文
posted @ 2016-03-02 20:41 UniqueColor 阅读(203) 评论(0) 推荐(0) 编辑
摘要: Problem Description Baby Ming collected lots of cell phone numbers, and he wants to sell them for money. He thinks normal number can be sold for b yua 阅读全文
posted @ 2016-03-01 15:57 UniqueColor 阅读(309) 评论(0) 推荐(0) 编辑
上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 67 下一页