android开发打开别人的项目的时候,手机面板上的控件有时候不能显示,还显示错误信息:
Exception raised during rendering: java.lang.System.arraycopy([CI[CII)V
Exception details are logged in Window > Show View > Error Log
原因是目前采用的API版本与原来的...
分类:
移动开发 时间:
2014-09-27 00:50:09
阅读次数:
629
所有的消息框都是异步的。用户可以在交互消息之后使用回调函数去处理结果或做一些自己需要处理的事情。一、alert(警告框) 二、$.messager.show三、confirm(确认框)四、prompt(提示框)五、progress(进度框)
jQuery对div的显示和隐藏:
显示:
$("#id").show()
隐藏:
$("#id").hide()
js对div的显示和隐藏:
div的visibility可以控制div的显示和隐藏,但是隐藏后页面显示空白
style="visibility: none;"
document.getElementById("typediv1").style.visi...
分类:
Web程序 时间:
2014-09-26 19:41:28
阅读次数:
192
display none 的问题如果我们写html 然后用 mail server 发给gmail client .如果内容涉及 display:none , 请加一个 important比如 :Gmail don show this垃圾邮件的问题如果内容有涉及银行网站的连接,这将会被归纳为垃圾邮件...
分类:
其他好文 时间:
2014-09-26 19:40:48
阅读次数:
167
第一个版本:/* who1.c - a first version of the who program * open, read UTMP file, and show results. */#include #include #include #include #include #include...
分类:
其他好文 时间:
2014-09-26 19:25:29
阅读次数:
148
if (isConnect(this)==false) {
final AlertDialog dlg = new AlertDialog.Builder(this).create();
dlg.show();
Window window = dlg.getWindow();
window.setContentView(R.layout.shrew_exit_dialog)...
分类:
其他好文 时间:
2014-09-26 13:58:18
阅读次数:
189
1、History
使用History可以查看以前执行的命令
GGSCI (ogg1) 5> history
GGSCI Command History
1: infoa
2: inf
3: info all
4: show all
5: history
2、!
使用!可以再次执行上次执行的命令
GGSCI...
分类:
其他好文 时间:
2014-09-26 12:53:38
阅读次数:
185
导航的js,用了一种比较笨的方法
1: $("#ananshi").hover(
2: function(){
3: $(this).parent().css({border:"1px solid #DBD1D1",backgroundColor:"#DBD1D1"});
4: /*$('#nanshi').show();*/
5: $('#nanshi').show();
6: $('#nvshi').hide...
分类:
其他好文 时间:
2014-09-26 11:33:08
阅读次数:
209