在自定义Dialog时显示的界面中老是有黑色的边框,下面就介绍使用style去除黑色边框方法。
首先在values/styles定义自定义样式:
@null
@drawable/actionbar_item_background
true
true
@null
#FFF
@d...
分类:
移动开发 时间:
2014-10-09 01:46:19
阅读次数:
226
import android.app.Activity;import android.app.AlertDialog;import android.app.AlertDialog.Builder;import android.content.DialogInterface;import androi...
分类:
移动开发 时间:
2014-09-29 17:30:31
阅读次数:
226
效果图:修改系统默认的Dialog.1,修改样式,在style.xml中添加一下代码 2.自定义Dialog类. publicclassMyDialogextendsDialog{
privatestaticintdefault_width=160;//默认宽度
privatestaticintde...
分类:
移动开发 时间:
2014-09-19 22:25:56
阅读次数:
228
先来看下效果图:
其中show和dismiss的时候有动画效果。
原先试过使用PopupWindow来做,但是使用的时候不是那么舒服,毕竟不是dialog嘛。
所以这次尝试还是使用dialog来做 ,很多地方是引用了系统源码(源码是最好的老师)
首先看CustomDialog.java的构造函数:
protected CustomDialog(Contex...
分类:
其他好文 时间:
2014-08-10 01:46:59
阅读次数:
239
先上效果图:
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
先上效果图:
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
解决Android自定义Dialog无法dismiss的问题...
分类:
移动开发 时间:
2014-06-07 13:34:24
阅读次数:
1128
自定义Dialog位置和大小2012-12-06
11:562835人阅读评论(0)收藏举报dialogDialog目录(?)[+]package angel.devil;import
android.app.Activity;import android.app.Dialog;import and...
分类:
移动开发 时间:
2014-04-30 23:16:35
阅读次数:
853