create user frame identified by tiger;grant create
session to frame;grant create table to frame;grant create tablespace to
frame;grant create view to ...
分类:
数据库 时间:
2014-06-11 13:00:15
阅读次数:
283
在Android应用中,经常需要手势滑动操作,比如上下滑动,或左右方向滑动,处理手势滑动通常有两种方法:一种是单独实现setOnTouchListener监听器来,另一种是构建手势探测器第一种方法,就是在要实现滑动的View中,实现OnTouchListener监听事件,然后判断KeyDonw和Ke...
分类:
移动开发 时间:
2014-06-11 10:26:06
阅读次数:
251
- (UIViewController*)viewController { for (UIView*
next = [self superview]; next; next =next.superview) { UIResponder*nextResponder
= [next nextRe...
分类:
其他好文 时间:
2014-06-11 09:34:16
阅读次数:
227
struts.xml文件配置:[html]view
plaincopy/jsp/Menu.jspinputStreamtext/cssfilename="main11.css"2048inputStreamapplication/octet-streamfilename="main111222.cs...
分类:
其他好文 时间:
2014-06-11 09:02:56
阅读次数:
278
窗口与视口将窗口、视口想象为两块叠放的透明玻璃“窗口玻璃”在上,“视口玻璃”在下我们以“窗口玻璃”坐标系为准,映射到“视口玻璃”上画图原点默认,两块玻璃的画图原点都在左上角,x轴向右,y轴向下当使用
SetWindowOrgEx 时,相当于在“窗口玻璃”相应坐标处打个原点孔当使用 SetViewpo...
分类:
其他好文 时间:
2014-06-11 08:37:22
阅读次数:
211
OnTouchListener接口是用来处理手机屏幕事件的监听接口,当为View的范围内触摸按下、抬起或滑动等动作时都会触发该事件。该接口中的监听方法签名如下。Java代码:public
boolean onTouch(View v, MotionEvent event) 参数v:参数v同样为事件....
分类:
移动开发 时间:
2014-06-11 08:06:15
阅读次数:
340
public voidnotifyDataSetChanged()Added inAPI
level 1Notifies the attached observers that the underlying data has been changed
and any View reflecting ...
分类:
移动开发 时间:
2014-06-11 07:44:51
阅读次数:
270
- (void)scrollViewDidEndDragging:(UIScrollView
*)scrollView willDecelerate:(BOOL)decelerate{ TTLog(@"scrollview
%@",scrollView);}
分类:
其他好文 时间:
2014-06-08 07:31:37
阅读次数:
177
一、首先说说View和ViewGroup吧Android系统中的所有UI类都是建立在View和ViewGroup这两个类的基础上的。所有View的子类成为”Widget”,所有
ViewGroup的子类成为”Layout”。View和ViewGroup之间采用了组合设计模式,可以使得“部分-整体”同...