import android.app.Activity;import android.app.AlertDialog;import android.app.Dialog;import android.content.DialogInterface;import android.os.Bundle;i...
分类:
其他好文 时间:
2014-07-07 15:18:20
阅读次数:
237
//String 是用来显示提示内容protected void dialog(String result) { AlertDialog.Builder builder = new Builder(MainActivity.this); builder.setMessa...
分类:
其他好文 时间:
2014-07-02 18:50:37
阅读次数:
154
使用panel的onMove事件解决了panel,dialog以及window组件在被拖动时,会超出浏览器边界而无法拖回的情况。
当窗口被拖出浏览器有边界时,$(document).width();会增大,增大的部分就是窗口超过浏览器窗口的部分,所以right > browserWidth条件永远无法满足。...
分类:
Web程序 时间:
2014-07-02 08:15:42
阅读次数:
204
遮罩层其实就是一个占据整个页面的半透明效果的页面元素,一般用div实现。页面中实现遮罩层,无非就是为了让用户只能操作弹出窗口的内容,而不允许操作弹出窗口外的内容。在实现时,我使用了两个div,一个遮罩层id=overlay,一个是弹出窗id=dialog。1 2 3 点击弹出窗可...
分类:
Web程序 时间:
2014-07-01 17:56:50
阅读次数:
249
先上效果图:
Title的Layout为:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
...
分类:
移动开发 时间:
2014-07-01 11:24:30
阅读次数:
289
做法有两种方法1.1.在AndroidManifest.xml文件当中设置当前activity的一个属性(系统自带的属性):android:theme="@android:style/Theme.Dialog"方法2.1。在styles.xml文件中可以新建一如下的style:如果窗口要添加窗口背景...
分类:
其他好文 时间:
2014-07-01 00:38:50
阅读次数:
327
先上效果图:
Title的Layout为:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
...
分类:
移动开发 时间:
2014-06-30 18:44:18
阅读次数:
269
之前自定义了一个AlertDialog对话框,第一次点击时正常,但第二次调用时会出现错误:java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first.
关于这个错误纠结了我...
分类:
移动开发 时间:
2014-06-28 07:28:39
阅读次数:
278
第二篇只是学了加载用datagrid加载数据,数据的增删改还没有做,今天主要是解决这个问题了。在做增删改前需要弹出对应窗口,这就需要了解一下EasyUi的弹窗控件。摘自:http://philoo.cnblogs.com/ 我的理解,就是panel有的属性Window、dialog都有,同时保留自己...
分类:
Web程序 时间:
2014-06-27 20:05:54
阅读次数:
307