码迷,mamicode.com
首页 >  
搜索关键字:alertdialog    ( 626个结果
kotlin编《第一行代码》(2)
一、alertdialog java: AlertDialog.Builder dialog=new AlertDialog.Builder(MainActivity.this); dialog.setTitle("This is Dialog"); dialog.setMessage("Somet ...
分类:其他好文   时间:2017-08-02 23:31:43    阅读次数:193
AlertDialog中使用ListView绑定数据
在实际工作过程中,单单使用AlertDialog的单选功能不一定能满足我们的需求,需要绑定数据到 listview 1. 自定义Layout ...
分类:其他好文   时间:2017-07-24 18:52:02    阅读次数:163
AlertDialog 的context 不能是application的context
昨天做了一个demo,静态注册的BroadcastrReceiver在onReceive方法里实现 alertdialog. 但是,健哥说我的这个会报错,但是为什么没报错很奇怪,我也很奇怪,今早一来我就研究了一下alertdialog的坑。 dialog 是类型同activity的应用窗口,都可以创 ...
分类:移动开发   时间:2017-07-06 13:22:09    阅读次数:234
Android 封装实现各种样式对话框
先上图 实现代码 package com.jock.alertdialog; import android.app.Activity; import android.content.Context; import android.os.Bundle; import android.view.KeyE ...
分类:移动开发   时间:2017-07-01 22:37:47    阅读次数:215
Android 封装实现各种样式对话框
先上图 实现代码 package com.jock.alertdialog; import android.app.Activity; import android.content.Context; import android.os.Bundle; import android.view.KeyE ...
分类:移动开发   时间:2017-07-01 22:33:02    阅读次数:205
Builder模式详解及其在Android开发中的应用
一、引言 在Android开发中,采用Builder模式的代码随处可见,比如说Android系统对话框AlertDialog的使用或者是Android中的通知栏(Notification)的使用,又比如说在一些常用的第三方库中也随处可见其踪迹,比如说一些常用的网络请求库如OkHttp或者是retro ...
分类:移动开发   时间:2017-06-27 23:32:34    阅读次数:251
Builder模式详解及其在Android开发中的应用
一、引言 在Android开发中,采用Builder模式的代码随处可见,比如说Android系统对话框AlertDialog的使用或者是Android中的通知栏(Notification)的使用,又比如说在一些常用的第三方库中也随处可见其踪迹,比如说一些常用的网络请求库如OkHttp或者是retro ...
分类:移动开发   时间:2017-06-23 22:55:57    阅读次数:232
安卓高级控件(一)
1.Toast信息提示框 View Code 2.对话框,警告框(Dialog、AlertDialog) 警告框代码 接口名称 描述 DialogInterface.OnClickListener 对话框单击事件处理接口 DialogInterface.OnCancelListener 对话框取消事 ...
分类:移动开发   时间:2017-06-06 01:00:36    阅读次数:195
AlertDialog自己定义View的使用方法+怎样改变弹出框的大小
android系统定义了弹出框,支持我们自己定义布局: public AlertDialog getEditCustomDialog() { LayoutInflater inflater = getLayoutInflater(); View view = inflater.inflate(R.l ...
分类:其他好文   时间:2017-06-04 09:46:55    阅读次数:280
安卓高级控件(1)
1.Toast信息提示框 2.对话框,警告框(Dialog、AlertDialog) 3.对话框操作事件 4.进度处理事件 5.SeekBar拖动条 ...
分类:移动开发   时间:2017-06-02 01:17:50    阅读次数:226
626条   上一页 1 ... 5 6 7 8 9 ... 63 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!