`
zhy20045923
  • 浏览: 156655 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论
文章列表
1     在ui中使用scrollview之后,如果复写activity的onkeydown或onkeyup事件,若果焦点在scrollview上,则这两个事件是不触发的,对于ontouch事件也是一样。解决问题的方法是scrollview.setOnKeyListener(); 2.     mediaplay在使用时,添加的一些事件诸如setOnCompletionListener等,没有起到作用,不执行,原因是因为之前没有设置数据源,解决方法,在setDataSource之后再设置事件响应。      mediaplay在执行prepare时,抛出IllegalStateExceptio ...
1.在应用1中定义自己的aidl文件。 package com.test.eric.AIDL; interface testAIDL { void fun(); } 2.在应用1中写service,实现aidl接口,复写onbind方法。 public class MyService extends Service { @Override public IBinder onBind(Intent t) { return mBinder; } priv ...
EditText ed = new EditText(this); Editable eb = ed.getEditableText(); //获取光标位置 int position = ed.getSelectionStart(); //指定位置插入字符 eb.insert(position, "XXX"); //给你的EditText设置输入类型 TYPE_CLASS_NUMBER,这样你在点击Ed ...
1. 内连接很简单 select A.*, B.* from A,B where A.id = B.id select A.*, B.* from A inner join B on A.id = B.id 以上两句是完全等价的 2. 左外连接 select * from A a left join B b on a.id=b.id select * from A a,B b where a.id=b.id(+) 以上两句是完全等价的 3. 右外连接 select * from A a right join B b on a.id=b.id select * from A a,B b wh ...
SP: CREATE PROCEDURE PROCESS_ADDNOTICE(IN RECORDOID BIGINT, IN STARTERID BIGINT, OUT RESULTSTATUS INTEGER, OUT RESULTMSG VARCHAR(4000)) begin --第三步 游标定义 --声明变量 ...
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springfra ...
1.只能输入数字的text框实现 <input type="text" style="text-align: right;" onKeyUp="value=(parseInt((value=value.replace(/\D/g,''))==''?'0':value,10))" /> 2.parseInt()函数说明 parseInt()在值转换时,如果以0开头,默认是8进制转换,如parseInt("0152") =106,此时可以写成parseInt("0152",10) 3.js ...
org.springframework.beans.NotWritablePropertyException: Invalid property ''registerDAO'' of bean class [service.RegisterService]: Bean property ''registerDAO'' is not writable or has an invalid setter method. Does the parameter type of the setter match the return type of the getter? 原因: 在service中,reg ...
原因: 1.由于在struts-config.xml中配置出错,注意type属性的值。 2.由于没有编译,在classes目录下面没有对应的action文件。 3.由于struts是线程安全的,所以在action中,如果部分属性加载失败,也会报这个异常。比如,在ssh整合时,往往要在action中取得service,如下: SelfAppointService selfService = (SelfAppointService) getBean("selfAppointService"); 如果在其他action中,getBean("selfAppointServi ...
Global site tag (gtag.js) - Google Analytics