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
转载于http://blog.csdn.net/csh159/article/details/8127280使用的是java里面的反射机制:dialog = new AlertDialog.Builder(MainActivity.this); dialog.setTitle("输入用户名:");....
分类:
移动开发 时间:
2014-09-26 10:33:48
阅读次数:
228
1 final Builder builder = new AlertDialog.Builder(this); 2 builder.setIcon(R.drawable.appicns_folder_smart); 3 builder.setTitle("Normal Dialog"); 4 b....
分类:
移动开发 时间:
2014-09-25 19:45:57
阅读次数:
219
弹出层是一个iframeopenWindow: function (options) { var url = options.url; url += url.indexOf("?") > 0 ? "&" : "?"; url += "ran=" + Math.random(); var isScro...
分类:
其他好文 时间:
2014-09-25 16:01:19
阅读次数:
269
/** * jQuery dialog windows * * author : piyg * Copyright(c) : 2014-09-01 09:28 * Version 1.0-pre * *自定义定时定频弹出窗口; *用法: *在自身jsp页面调用 showDialog(title,fn1,fn2),showProcessDialog...
分类:
其他好文 时间:
2014-09-24 12:50:27
阅读次数:
349
增加按钮和监听,这个和上个不同在于,它不是在一个dialog里面,而是从新写了一个activity,因此需要先找到这个activity的入口。 case R.id.checkframe: if (mCurrentModule instanceof PhotoModule) { ...
分类:
移动开发 时间:
2014-09-23 20:37:55
阅读次数:
208
首先页面采用ViewPager,在第一个页面中有一个按钮,要求点击这个页面上的按钮弹出一个对话框。先贴出效果图:分析难点:1、在ViewPager中,共有四个选项卡页,找到第一个页面中Button按钮。先贴出代码: 1 package com.example.acountrecorder; 2 .....
分类:
移动开发 时间:
2014-09-23 11:36:14
阅读次数:
388
下面来记录一下Qt中的形形色色的Dialg。。。。直接给出PySide自带的example,因为我觉得我的改写也只是“依葫芦画瓢”。。。放心,Qt是开源的,真伟大。。#!/usr/bin/env python"""PyQt4 port of the dialogs/standarddialogs e...
分类:
其他好文 时间:
2014-09-22 12:25:02
阅读次数:
444
在上一篇文章
Android 菜单简析01(OptionsMenu) 中给大家介绍了OptionsMenu 的使用,这篇接着给大家介绍下
ContextMenu 的用法。
ContextMenu 简称上下文菜单,通过长按事件响应,有两种响应模式
浮动模式
效果类似弹出的 Dialog,在屏幕的正中央,可以自定义显示的 Menu 以及 MenuItem 的响应动作模式
通过Acti...
分类:
移动开发 时间:
2014-09-21 02:34:19
阅读次数:
300
最近的移动端项目终于告一段落了,其中遇到了不少问题,在此和大家总结分享。首先,说一下结构。一般的手机页面大致可以分为五块:head, content, foot,solidbar,dialog. 针对这种布局,在此提供一种方式,这种方式使用了css3的一些样式属性。代码如下: 1 2 3 4 ...
分类:
移动开发 时间:
2014-09-20 23:57:29
阅读次数:
1143