今天发现设置viewpager高度为wrap_content时并没作用,stackoverflow给出了解决方案,就是自定义viewpager,重写onMesure()方法:
public class WrapContentHeightViewPager extends ViewPager {
/**
* Constructor
*
* @param...
分类:
移动开发 时间:
2014-08-24 16:46:42
阅读次数:
235
虽然Gallery已经过时了,但是既然书上讲了,我还要学习一下。。产生的效果很好。。。 package com.example.gallery;import android.app.Activity;import android.content.re...
分类:
移动开发 时间:
2014-08-24 16:38:42
阅读次数:
199
在通过Struts2标签显示对象的Clob属性值的时候,显示的并不是CLOB或者BLOB的内容,而是显示的toString方法的值
例如我在实体中的注解为:
@Lob
@Column(name = "CONTENT_TEXT")
public String getContentText() {
return contentText;
}
前台页面读取方式为:contentText...
分类:
其他好文 时间:
2014-08-24 11:40:32
阅读次数:
132
@RequestMapping(value="ddd.do")publicvoidddd(HttpServletResponseresponse){try{List<AsWp>list=asWpService.findAll();HSSFWorkbookwb=export(list);response.setContentType("application/vnd.ms-excel");response.setHeader("Content-disposition","p_w_upload;fil..
分类:
编程语言 时间:
2014-08-24 10:22:22
阅读次数:
213
经常需要在某些判断的时候给元素增加样式。通常使用的方式是assClasscss .content{ color: green; } .content .warm{ color: purple; }bo...
分类:
Web程序 时间:
2014-08-23 21:29:41
阅读次数:
264
[该教程翻译自Spring官方,并进行适当删减。]
你将搭建的
你将搭建一个可以接受Http Get 请求的web service,
http://localhost:8080/greeting
并将以JSON字符串的形式返回问候,
{"id":1,"content":"Hello, World!"}...
分类:
Web程序 时间:
2014-08-23 20:25:31
阅读次数:
232
@SuppressWarnings("resource")public void download() throws Exception{ String filename = "qrcode.png"; String content = "content"; BufferedIma...
分类:
其他好文 时间:
2014-08-23 15:19:40
阅读次数:
218
每个view?中一定存在一个必调的方法,?measure(int,?int)?,它调用onMeasure(int,?int)?? onMeasure(widthMeasureSpec,?heightMeasureSpec)的作用是什么??? 测量view和它的content?得出?widthMeasureS...
分类:
其他好文 时间:
2014-08-23 12:48:40
阅读次数:
183
jQuery Easyui 的tabs插件有两种方式加载某个tab(标签页)上的内容:“href远程请求”和“content本地内容”,本文就两种方式的优缺点进行简单分析和思考。两者特点:href方式加载数据的特点:被加载的页面只有body元素内部的内容才会被加载,也就是jQuery的ajax请求的...
分类:
Web程序 时间:
2014-08-23 11:15:00
阅读次数:
240
发现问题
在Controller类方法上加@ResponseBody,直接返回字符串,结果乱码。
如下所示:
MockHttpServletResponse:
Status = 200
Error message = null
Headers = {Content-Type=[text/plain;charset=IS...
分类:
编程语言 时间:
2014-08-23 08:50:10
阅读次数:
276