继承asynctask,有三个参数
三个参数的含义是第一个表示输入参数,第二个为progress,表示当前的进度,第三个为doInbackground
返回值
需要一个参数传入url,返回一个result结果,如果没有网络则返回空
import java.io.InputStream;
import java.util.ArrayList;
import java.util.Li...
分类:
移动开发 时间:
2014-05-13 07:47:33
阅读次数:
406
JavaScript实现弹窗报错
1、具体错误如下
SCRIPT 5022:cannot call methods on dialog prior to initialization;
attempted to call method 'open'.
2、错误原因
3、解决办法...
分类:
编程语言 时间:
2014-05-13 07:01:27
阅读次数:
463
显示7种Dialog下面是图,然后一次对应的代码实现
实现代码
new AlertDialog.Builder(AlertDialogSamples.this)
.setIcon(R.drawable.alert_dialog_icon)
.setTitle(R.string.alert_dialog_two_button...
分类:
移动开发 时间:
2014-05-13 05:47:34
阅读次数:
446
今天在设置kettle的界面时,想看看中文是什么样子的,于是就把如图的地方都改成了中文重启后,kettle启不来了一直报错java.lang.ArrayIndexOutOfBoundsException:5
atorg.pentaho.di.ui.spoon.dialog.TipsDialog.getTip(TipsDialog.java:191)
atorg.pentaho.di.ui.spoon.dialog..
分类:
其他好文 时间:
2014-05-13 01:53:37
阅读次数:
625
首先你要知道Activity的四种状态:Active/Runing 一个新 Activity
启动入栈后,它在屏幕最前端,处于栈的最顶端,此时它处于可见并可和用户交互的激活状态。 Paused 当 Activity 被另一个透明或者 Dialog 样式的
Activity 覆盖时的状态。此时它依然与...
分类:
移动开发 时间:
2014-05-12 05:18:17
阅读次数:
376
Windows界面编程第一篇 位图背景与位图画刷
可以通过WM_CTLCOLORDLG消息来设置对话框的背景,MSDN上对这个消息的说明如下:TheWM_CTLCOLORDLGmessage is sent
to a dialog box before the system draws the di...
分类:
Windows程序 时间:
2014-05-12 00:56:39
阅读次数:
1748
Spinner
提供了快速从一个数据集中选择一个值的方法,默认显示的是当前选择的值,点击可以显示下拉列表,用户可以列表中选择一个新值。spinner有两种显示模式dialog和dropdown,有不同的属性对应使用:spinner源码中的片段switch
(mode) { case M...
分类:
其他好文 时间:
2014-05-12 00:32:02
阅读次数:
412
(1)Frame与窗口事件
1.Window、Frame、Dialog和FileDialog都属于有边框容器,他们的父类为Window,但是Window本身属于无边框的,算是有边框容器的一个例外。
2.Frame可以作为一个Application的最外层容器,也可以被其他容器创建并弹出成为独立的.....
分类:
编程语言 时间:
2014-05-11 05:15:43
阅读次数:
421
7种形式的Android
Dialog使用举例http://www.oschina.net/question/54100_32486
分类:
移动开发 时间:
2014-05-10 09:02:32
阅读次数:
298
将Activity显示成Dialog的形式:Tip: If you want a custom
dialog, you can instead display an Activity as a dialog instead of using the
Dialog APIs. Simply creat...
分类:
其他好文 时间:
2014-05-10 07:52:33
阅读次数:
369