码迷,mamicode.com
首页 > 2015年01月10日 > 全部分享
Android GridView中Button点击事件onItemClick不能响应
今天在捣鼓一个类似于百度贴吧的东西。布局:上面是个ActionBar标题栏,然后是一个GridView布局,在Java代码中动态加载关注的贴吧,一切就绪中,很愉快的弄好了! 现在需要点击选项进入某个贴吧,那么问题来了—— GridView中Button点击事件onItemClick不能响应。...
分类:移动开发   时间:2015-01-10 01:31:45    阅读次数:411
Pat(Advanced Level)Practice--1087(All Roads Lead to Rome)
Pat1087代码 题目描述: Indeed there are many different tourist routes from our city to Rome. You are supposed to find your clients the route with the least cost while gaining the most happiness. Input S...
分类:其他好文   时间:2015-01-10 01:31:07    阅读次数:245
华为机试—逆序链表输出
题目描述:    将输入的一个单向链表,逆序后输出链表中的值。链表定义如下:  typedef struct tagListNode  {        int value;        struct tagListNode *next;  }ListNode;    要求实现函数:    void converse(ListNode **head);  【输入】head: ...
分类:其他好文   时间:2015-01-10 01:30:56    阅读次数:203
Pat(Advanced Level)Practice--1089(Insert or Merge )
Pat1089代码 题目描述: According to Wikipedia: Insertion sort iterates, consuming one input element each repetition, and growing a sorted output list. Each iteration, insertion sort removes one element ...
分类:其他好文   时间:2015-01-10 01:31:42    阅读次数:282
Linux内核模块符号CRC检查机制
Linux内核不承诺模块编程接口兼容性,事实上这类编程接口在内核主线的演进过程中,不停地发生变化,内核是如何检查插入的模块是否接口跟当前的内核接口兼容。本文重点介绍内核模块符号的CRC机制。...
分类:系统相关   时间:2015-01-10 01:31:24    阅读次数:361
Pat(Advanced Level)Practice--1090(Highest Price in Supply Chain)
Pat1090代码 题目描述: A supply chain is a network of retailers(零售商), distributors(经销商), and suppliers(供应商)-- everyone involved in moving a product from supplier to customer. Starting from one root supp...
分类:其他好文   时间:2015-01-10 01:28:52    阅读次数:212
华为机试—子串分离
题目描述:    通过键盘输入任意一个字符串序列,字符串可能包含多个子串,子串以空格分隔。请编写一个程序,自动分离出各个子串,并使用’,’将其分隔,并且在最后也补充一个’,’并将子串存储。  如果输入“abc def gh i        d”,结果将是abc,def,gh,i,d,    要求实现函数:    void DivideString(const char *pInputS...
分类:其他好文   时间:2015-01-10 01:30:17    阅读次数:171
从源码角度分析LayoutInflater 的inflate
大家inflate应该用的比较多吧,尤其在使用listview 的时候。 先来看看item的布局文件 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" android:layout_height="20...
分类:其他好文   时间:2015-01-10 01:28:38    阅读次数:229
基于Spring的可复用的Junit测试类的设计
平时我们做SSH项目的时候避免不了要做单元测试,而且很多时候,我们是不希望单元测试的结果对真正的数据库有影响的,那么我们就需要使用事务来管理了。            JUnit测试基类如下: package com.sms.test.base; import org.junit.runner.RunWith; import org.springframework.test.context....
分类:编程语言   时间:2015-01-10 01:28:35    阅读次数:237
css background属性
background 简写属性在一个声明中设置所有的背景属性。 所有浏览器都支持 background 属性。 注释:IE8 以及更早的浏览器不支持一个元素多个背景图像。 注释:IE7 以及更早的浏览器不支持 "inherit"。IE8 需要 !DOCTYPE。IE9 支持 "inherit"。 可以设置如下属性: ?background-color ?background-posit...
分类:Web程序   时间:2015-01-10 01:26:10    阅读次数:378
sql语句总结【不断更新】
1:查询数据库dbName有多少张表 select count(*) from information_schema.tables where table_schema='dbName’; 2:根据某个字段合并表 select id,name,sum(operate) from test group by name; 执行结果:...
分类:数据库   时间:2015-01-10 01:26:07    阅读次数:185
css background-color属性
background-color 属性设置元素的背景颜色。 默认值: transparent 继承性: no 版本: CSS1 JavaScript 语法: object.style.backgroundColor="#00FF00" 可能的值 color_name 规定颜色值为颜色名称的背景颜色(比如 red)。 hex_number 规定颜色值为十六进制值的背景颜色(比...
分类:Web程序   时间:2015-01-10 01:20:40    阅读次数:968
css background-position属性
background-position 属性设置背景图像的起始位置。 这个属性设置背景原图像(由 background-image 定义)的位置,背景图像如果要重复,将从这一点开始。 提示:您需要把 background-attachment 属性设置为 "fixed",才能保证该属性在 Firefox 和 Opera 中正常工作。 默认值: 0% 0% 继承性: no 版本: CS...
分类:Web程序   时间:2015-01-10 01:17:28    阅读次数:505
css background-size 属性
background-size 属性规定背景图像的尺寸。 语法 background-size: length|percentage|cover|contain; length 设置背景图像的高度和宽度。 第一个值设置宽度,第二个值设置高度。 如果只设置一个值,则第二个值会被设置为 "auto"。 percentage 以父元素的百分比来设置背景图像的宽度和高度。第一个值设置宽度,第二...
分类:Web程序   时间:2015-01-10 01:11:27    阅读次数:2181
各种排序的实现与复杂度分析(持续更新)
稳定性: 选择排序、快速排序、希尔排序、堆排序不是稳定的排序算法, 冒泡排序、插入排序、归并排序和基数排序是稳定的排序算法。 复杂度 冒泡法:  复杂度为O(n*n)。当数据为正序,将不会有交换。复杂度为O(0)。不说了。 直接插入排序:O(n*n) 希尔排序:算法的复杂度为n的1.2次幂 选择排序:O(n*n) 快速排序:不稳定,平均时间复杂度O(nlog...
分类:编程语言   时间:2015-01-10 01:09:47    阅读次数:222
C#求水仙花数!
最近在入门学习.NET编程,慢慢的学习了一些门道,同时也需要将学习的点点滴滴记录下来,今天我就自己想了想,把水仙花数的代码写出来,运行也通过了,就贴在这里,分享给大家,也给自己做一个记录。using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.T...
分类:Windows程序   时间:2015-01-10 01:11:23    阅读次数:291
Struts2中的ValueStack理解
1、目标 重新认识下ValueStack; 2、图解 3、解释下用法 struts2中在页面取值的话;是这样的,root中可以直接取值不用加# 但是在ActionContext中取值则需要加#访问才能取到值; 4、struts2中debug标签所对应的root和ActionContext;...
分类:其他好文   时间:2015-01-10 01:09:05    阅读次数:241
1093条   上一页 1 ... 58 59 60 61 62 63 64 65 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!