首页 > 2014年11月29日 > 全部分享
AnimationDrawable回到初始状态(重置)
用AnimationDrawable的时候发现只有start()和stop(),但是需要把动画重新返回初始状态的时候怎么办?解决方法1:((AnimationDrawable)(someButton.getBackground())).stop();someButton.setBackgroundD...
分类:其他   时间:2014-11-29 11:40:48    收藏:0  评论:0  赞:0  阅读:935
MVC_2
1. 分部视图(PartialView方法)。2. 在视图中直接请求Action方法。3. 视图传数据四种方法:ViewDataTempData(的用法:用来在为一次请求中同时执行的多个Action方法之间共享数据使用。)ViewBagModel4. 在全局配置文件中,已经配置了一个路由过滤器,为第...
分类:Web开发   时间:2014-11-29 11:40:28    收藏:0  评论:0  赞:0  阅读:264
TCP/IP协议栈各个层次及分别的功能
网络接口层:这是协议栈的最低层,对应OSI的物理层和数据链路层,主要完成数据帧的实际发送和接收。网络层:处理分组在网络中的活动,例如路由选择和转发等,这一层主要包括IP协议、ARP、ICMP协议等。传输层:主要功能是提供应用程序之间的通信,这一层主要是TCP/UDP协议。应用层:用来处理特定的应用,...
分类:其他   时间:2014-11-29 11:40:18    收藏:0  评论:0  赞:0  阅读:511
关于使用apktool可以反编译无法回编译的解决问题
转自:http://blog.csdn.net/a8082649/article/details/37603513但是进行回汇编时出现:F:\apktool>apktoolbHelloHello.apkExceptioninthread"main"brut.androlib.AndrolibExce...
分类:其他   时间:2014-11-29 11:39:58    收藏:0  评论:0  赞:0  阅读:776
EasyTouch绑定事件在电脑上点击有效Android上无效的解决方法
最近做一个RPG类的游戏发现使用EasyTouch虚拟摇杆插件在电脑上点击有效Android上无效,查找资料发现是Easy Joystick中的一个属性interaction type要设置成Direct and event,默认的是Event Notification,也就是事件通知,因为进行的....
分类:移动平台   时间:2014-11-29 11:39:48    收藏:0  评论:0  赞:0  阅读:621
ios数据库
#define DATABASE_PATH [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)[0]stringByAppendingString:@"/healthCloud.db”]用于...
分类:移动平台   时间:2014-11-29 11:39:38    收藏:0  评论:0  赞:0  阅读:319
flex datagrid itemrender wordwrap失效
现在我是想把datagrid中的部分字体变个颜色。但是重写set data函数后发现原先的wordwrap自动换行不好使了。于是就在谷歌上找问题。。参考了两篇:http://stackoverflow.com/questions/8134521/itemrenderer-is-cancelling-...
分类:其他   时间:2014-11-29 11:39:28    收藏:0  评论:0  赞:0  阅读:423
数据结构基本概念和算法分析
一、数据结构基本概念1. 数据:数据是对客观事物的符号表示,在计算机科学中是指所有能输入到计算机中并被计算机程序处理的符号的总称。2. 数据元素:数据元素是数据的基本单位,在计算机程序中通常作为一个整体进行考虑和处理。一个数据元素可由若干个数据项组成。数据项是数据的不可分割的最小单位。3. 数据对象...
分类:编程语言   时间:2014-11-29 11:39:18    收藏:0  评论:0  赞:0  阅读:415
【转】推荐UML插件AmaterasUML
基于Green UML在使用过程中的问题(对于大工程,点击生成类图后不响应),自己只能再次寻找其他的插件。在无意中,发现AmaterasUML。 官方网站:http://amateras.sourceforge.jp/cgi-bin/fswiki_en/wiki.cgi?page=AmaterasU...
分类:其他   时间:2014-11-29 11:39:08    收藏:0  评论:0  赞:0  阅读:216
A Famous Music Composer
描述Mr. B is a famous music composer. One of his most famous work was his set of preludes. These 24 pieces span the 24 musical keys (there are musically...
分类:其他   时间:2014-11-29 11:38:48    收藏:0  评论:0  赞:0  阅读:333
Edit Distance
Given two wordsword1andword2, find the minimum number of steps required to convertword1toword2. (each operation is counted as 1 step.)You have the fol...
分类:其他   时间:2014-11-29 11:38:38    收藏:0  评论:0  赞:0  阅读:276
UVA - 10012
How Big Is It?Ian's going to California, and he has to pack his things, including his collection of circles. Given a set of circles, your program must...
分类:其他   时间:2014-11-29 11:38:28    收藏:0  评论:0  赞:0  阅读:290
Search for a Range
Given a sorted array of integers, find the starting and ending position of a given target value.Your algorithm's runtime complexity must be in the ord...
分类:其他   时间:2014-11-29 11:38:18    收藏:0  评论:0  赞:0  阅读:269
WampServer 在 httpd.conf 中配置多站点
因为要用 ThinkPHP 的当前最新版本 3.2.2,对应要求 PHP 的版本要高于 5.3.0,所以安装了 WampServer 2.2 ( Apache 2.2.21,PHP 5.3.10,MySQL 5.5.20) ,顺便记录一下在 httpd.conf 中配置多站点。第一步:安装 Wamp...
分类:Web开发   时间:2014-11-29 11:38:08    收藏:0  评论:0  赞:0  阅读:315
CUDA编程学习(一)
/****c code****/#includeint main(){ printf("Hello world!\n); return 0;}/****CUDA code****/_global_ void mykernel(void){}int main(){ mykernel>...
分类:其他   时间:2014-11-29 11:37:58    收藏:0  评论:0  赞:0  阅读:146
xss challenge 解题思路(4-7)
challenge 4:这一关输入依然是过滤的,而且后面的下拉菜单都过滤了,但是我们发现,源码里有name=p3的东西,他的内容提交后不变,so,将value值变为 ""提交后成功。challenge 5:这一关是没有过滤的,但是文本框有maxlength,从原代码中果断删掉。然后构造"" 弹窗成功...
分类:其他   时间:2014-11-29 11:37:48    收藏:0  评论:0  赞:0  阅读:242
mysql登录报错“Access denied for user 'root'@'localhost' (using password: YES”的处理方法
使用/etc/mysql/debian.cnf文件中[client]节提供的用户名和密码:文件内容:[client]host = localhostuser = debian-sys-maint //用户名password = Xgsuj2n8rlvw7jUO //密码socket...
分类:数据库技术   时间:2014-11-29 11:37:18    收藏:0  评论:0  赞:0  阅读:156
Leetcode-Valid Parentheses
Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid.The brackets must close in the c...
分类:其他   时间:2014-11-29 11:37:08    收藏:0  评论:0  赞:0  阅读:212
多态性的使用
public class Department { public String name; private int number; public Department() { super(); } public Department(String n...
分类:其他   时间:2014-11-29 11:36:58    收藏:0  评论:0  赞:0  阅读:234
struts2 下载文件
当下载的文件名字中不含有汉字,或者下载的文件不需要考虑用户的权限问题时。直接让超链接的href属性为所要下载的文件名即可。否则最好使用struts2的文件下载机制。 以下载图片为例 完整的代码: action: import java.io.File; import java.io.InputStr...
分类:其他   时间:2014-11-29 11:36:48    收藏:0  评论:0  赞:0  阅读:320
1233条   上一页 1 ... 43 44 45 46 47 ... 62 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!