E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
alertDialog
Android vibrate+ 振动
packageVibrate.co.cc;importnet.youmi.android.AdManager;importandroid.app.Activity;importandroid.app.
AlertDialog
iteye_17686
·
2020-08-08 16:05
移动开发
android继承FragmentActivity对话框
Alertdialog
弹出闪退问题
要自己定义一个style让其悬浮在activity之上@null//Dialog的windowFrame框为无true//是否浮现在activity之上true//是否半透明true//是否显示title@android:color/white//设置dialog的背景@android:color/transparent0.7//就是用来控制灰度的值,当为1时,界面除了我们的dialog内容是高亮
叼根烟去流浪
·
2020-08-08 14:45
dialog点击对话框之外的区域禁止取消,点击返回按钮取消对话框的同时关闭当前activity
privatevoidshowIsLoadDraftDialog(finalEPrescriptionVOePrescriptionVO){
AlertDialog
.Builderbuilder=newAlertDialog.Builder
yzjgogo
·
2020-08-08 12:50
对话框dialog
android
Android中常见的设计模式
1.Builder模式在开发过程中,我们经常用到
AlertDialog
。
zxc123e
·
2020-08-07 23:12
android
design
pattern
android 底部弹出提示框的实现方式
1.android实现底部弹框的两种实现方式:(1)使用系统自带对话框
AlertDialog
实现(2)自定义对话框实现1.1使用系统自带对话框
AlertDialog
实现publicclassMainActivityextendsAppCompatActivityimplementsView.OnClickListener
Code Issuer
·
2020-08-07 21:03
android
添加系统权限
Settings.System.canWrite(this)){AlertDialogalertDialog1;
alertDialog
1=newAlertDialog.Builder(this).setTitle
小溜溜9
·
2020-08-07 21:14
安卓开发
android
java
android 在Application中弹框
AlertDialog
.Builderbuilder=newAlertDialog.Builder(getApplicationContext());builder.setMessage("蓝牙出问题了
tangweiguo03051987
·
2020-08-07 18:40
Android 拍照(获取原图),选择照片并且剪切图片
/***对话框选择相片或者拍照*@paramcontext*/publicvoidshowPicturePicker(finalContextcontext){
AlertDialog
.Builderbuilder
zhuxiaohao丶
·
2020-08-07 16:32
Android
Android源码中的设计模式2——Builde…
1、Builder模式提及Builder就会想起使用
AlertDialog
,以及那一长串builder.....show();a、设计意图将一个复杂对象的构建与它的表示分离,使得同样的构建过程可以创建不同的表示
lvmuheng
·
2020-08-07 15:08
Android
Android常用之返回按键监听
我们经常要对按键进行监听,今天跟大家分享一下最常用的按下返回退出功能的实现.如果没有对返回键设置监听,通常按下一次返回键就会退出程序或退出某个界面,这样是很不人性化的,我们可以有两种处理方式:按下返回键时弹出一个对话框(
AlertDialog
GaryLee271
·
2020-08-07 14:19
Android
安卓Dialog关闭空白区域及返回键点击响应
本文主要针对对话框来说,我们不希望响应空白区域或返回键,则可以进行相应的设置:
AlertDialog
.Builderbuilder=newAlertDialog.Builder(context);builder.setCanceledOnTo
何梦
·
2020-08-07 14:57
为什么Cursor cursor = database.rawQuery一直报错
importjava.io.FileOutputStream;importjava.io.InputStream;importandroid.app.Activity;importandroid.app.
AlertDialog
bihan0986
·
2020-08-07 12:58
Android 开发中常用到的设计模式
Builder模式:比如
AlertDialog
.Builder;例简单模拟Android中
AlertDialog
的Builder设计模式适配器模式:比如GridView、ListView与Adapter
吖痕
·
2020-08-07 12:14
能否从安卓中举几个列子,分别用到了那些设计模式?
1.
AlertDialog
、Notification源码使用了建造者模式完成参数的初始化;优点:1.良好的封装性,隐藏内部实现细节;2.建造者独立,容易扩展。
ITJingYing2050
·
2020-08-07 11:52
安卓开发 自定义Dialog的问题总结之---Title背景为黑问题、edittext无法弹出软键盘
**一、一开始想到的是利用
AlertDialog
来实现。代码如下:mBuilder=newAlertDialog.Builder(getActivity()
立志成为小胖纸的男人
·
2020-08-07 11:06
安卓技术
自定义
AlertDialog
指定布局大小和设置全屏
如果用的比较少的话,大家可以采用自定义
AlertDialog
的方式来实现弹框。在使用自定义
AlertDialog
的过程中,大家可能会遇到一下问题:1.自定义布局不能够指定大小。
游走的大千世界的烤腰子
·
2020-08-05 22:43
常见问题备录
Android笔记
很漂亮的自定义的
AlertDialog
的对话框
请尊重原创;过后会上传源码,或者联系我看图效果不多说,上代码publicvoidinit(){finalViewtextEntryView=factory.inflate(R.layout.dialog_layout,null);dlg=newAlertDialog.Builder(MainActivity.this).setView(textEntryView).create();dlg=new
zh刺客
·
2020-08-05 22:42
android
kotlin
AlertDialog
使用方法以及kotlin点击事件和长按事件冲突
1.kotlinAlertDialog使用方法问题说明:我在recyclerview的长按点击事件中想要是这一个对话框进行显示,调用方法:valbuilder=
AlertDialog
.Builder(this
安东尼肉店
·
2020-08-05 22:37
Android
Android之
AlertDialog
(弹出式对话框)的使用
首先我们需要创建这个
AlertDialog
,因此我们新建一个方法initDialog,在此之前我们需要在全局声明一个
AlertDialog
对象(AlertDialogalertDialog;),下面的方法中就是在全局声明了
WindFromFarEast
·
2020-08-05 22:32
Android
Android6.0
AlertDialog
的title和message 不显示问题
今天做掌上武大校园网启停的确认对话框,遇到了在android6.0机子上AlertDiog的title和message文字不显示的问题,如下图看到网上的解决方案是导android.support.v7.app这个包,用这个包中的
alertdialog
刘大美女lxy
·
2020-08-05 22:27
Android
AlertDialog
不显示文字
title:
AlertDialog
不显示文字date:2017-06-2710:33:27tags:problems问题描述在自己小米5S安卓6.0上测试,发现弹框只有按钮没有文字,title和message
沐恩_
·
2020-08-05 22:23
Android
AlertDialog
的简单使用,五个实例
我分别用了5个按钮来演示这五个例子的效果,我先来讲解一下这五个效果分别是什么吧:一个警告对话框上面有两个按钮一个警告对话框上面有两个选项一个警告对话框上面有两个单选按钮一个警告对话框上面有三个多选框和两个按钮一个自定义的警告对话框在注释中我把警告对话框简写为警告框了,下面来看下完整的代码:AlertDialogActivity中的代码:importandroid.content.DialogInt
冰之沁泠
·
2020-08-05 22:13
Android开发
创建自定义布局
AlertDialog
自定义
AlertDialog
跟普通的其实差不多,就是多了一些附加操作,使得对话框的交互跟activity界面交互一样,所以今天做了一个简单的例子。效果如下图。
浪克oo
·
2020-08-05 22:38
android
【自用】 Kotlin 创建自己的对话框
2019独角兽企业重金招聘Python工程师标准>>>创建自己的对话框KOTLIN:funuserDialog(){valdialog=
AlertDialog
.Builder(this).setIcon
weixin_34408717
·
2020-08-05 22:07
Android之自定义
AlertDialog
的实现方法(一)
(一)Dialog简介Dialog是Android开发中需要经常使用的系统组件之一,
AlertDialog
可以显示一个、两个等多个按钮,使用setMessage()方法可以只显示字符串提示信息,当然用户也可以自定义自己的
weixin_34319817
·
2020-08-05 22:06
android对话框之
AlertDialog
.Builder类的setSingleChoiceItems
通过
AlertDialog
.Builder类的setSingleChoiceItems方法可以创建带单按钮的列表:方法如下:1、从资源文件中装载数据:publicBuildersetSingleChoiceItems
weixin_33786077
·
2020-08-05 22:59
Android 自定义
AlertDialog
退出对话框
Android自定义
AlertDialog
退出对话框转https://blog.csdn.net/wkh11/article/details/53081634在项目中很多时候会出现点击返回键出现提示对话框
weixin_30670925
·
2020-08-05 22:26
AlertDialog
自定义
AlertDialog
的自定义其实网上很多了,但是有一个坑却很少见人提及。
乐翁龙
·
2020-08-05 22:09
Android-自定义
用
AlertDialog
实现程序退出提示
本次就是使用
AlertDialog
来实现点击返回弹出提示框效果。
三寸花笺
·
2020-08-05 22:58
android学习
android中设置
AlertDialog
的大小 .
AlertDialogdialog=builder.setTitle("消息列表").setView(layout).create();dialog.show();//设置窗口的大小dialog.getWindow().setLayout(300,200);dialog.show();一定要放在dialog.getWindow().setLayout(300,200);的前面,否则不起作用。网上有
少逸的生活
·
2020-08-05 22:27
android
总结
android
转载
android-
AlertDialog
加载xml文件同时显示图片
Viewview=LayoutInflater.from(getActivity()).inflate(R.layout.check_picture,null);LinearLayoutlinearlayout=(LinearLayout)view.findViewById(R.id.linlayoutpic);ImageViewimageview=(ImageView)view.findView
山水有相逢-马哥哥
·
2020-08-05 21:53
android基础
android中设置
AlertDialog
的大小
转自http://blog.csdn.net/kuan1990/article/details/7248921今天用上了,写得不错[java]viewplaincopyAlertDialogdialog=builder.setTitle("消息列表").setView(layout).create();dialog.show();//设置窗口的大小dialog.getWindow().setLay
samguoyi
·
2020-08-05 21:20
android
android
alertdialog
不能弹出弹窗问题
很多人会遇到这样一个问题,就是在使用
alertdialog
的时候并不能很理想的弹出弹窗,看了代码也找不出什么问题,这个时候很可能就是在newalertdialog.build(acivity)这个方法里面的参数有问题
曲洋quyang
·
2020-08-05 21:20
quyang
一个好看的Android
AlertDialog
最近项目需求,需要一个好看一点的提示框,网上搜罗一番,发现sweetDialog人气很高,但是到了实际使用的时候,发现有些问题不太好解决,而且已经三年没有更新了,而其他的库,更是达不到要求。所以索性自己写了一个smile-dialog,这里放出来,希望对大家有所帮助。目前实现比较简单,只是一个简单的提示框(warning、success、error三种状态),以后持续添加新的功能。话不多说,先上效
LYF400
·
2020-08-05 21:13
Android
开发
9_kotlin安卓(对话框)
AlertDialog
[参考一篇博客进行修改](https://blog.csdn.net/maoruibin9035/article/details/79180621)布局业务逻辑classMainActivity:AppCompatActivity(){overridefunonCreate(savedInstanceState:Bundle?){super.onCreate(savedInstanceState)
莫狄
·
2020-08-05 21:31
android 开发 实现一个自定义布局的
AlertDialog
对话框
packagecom.example.lenovo.mydemo2;importandroid.content.DialogInterface;importandroid.support.v7.app.
AlertDialog
少问,多查,靠自己
·
2020-08-05 21:59
android开发
自定义
AlertDialog
对话框(1)-简单实现
当前文章提供简单实现的方法:1、创建一个
AlertDialog
子类并实现OnClickListener接口。
科大向阳
·
2020-08-05 21:17
Android入门
Kotlin 中使用 AlertListDialog
AlertListDialog如下所示的dialog经常看到实现如下所示:vallist=Array(1,{"打开应用","卸载应用","查看详情","去市场查看"})android.support.v7.app.
AlertDialog
.Builder
大侠咕咚
·
2020-08-05 21:06
kotlin
滑块验证码seekbar与
alertdialog
自定义布局
用Androidstudio第一次尝试滑块验证,一开始单纯的做了使用seekbar控件的xml,后来因为发现是属于点击弹出对话框的模式,于是又去查阅
alertdialog
自定义,各种博主的写的都不错,但是在实践的过程中我也出现了不少报错
haiyinshushe
·
2020-08-05 21:13
Android
studio
Kotlin学习笔记十一、Kotlin中创建dialog
a、java环境下的Dialog转换为Kotlin环境下的Dialogvardialog=
AlertDialog
.Builder(this)dialog.setTitle("还珠楼主").setMessage
任缥缈
·
2020-08-05 21:42
Kotlin笔记
android
AlertDialog
自定义大小
AlertDialog
.Builderbuilder=newAlertDialog.Builder(this);builder.setView(LayoutInflater.from(context).
chunlongyuan
·
2020-08-05 21:33
android琐事
Android入门--弹出三个按钮的对话框
对话框的父类是android.app.Dialog,通过构建类android.app.
AlertDialog
来实现弹出式对话框,可以使用
AlertDialog
.Builder和不同的参数来构建对话框。
alfany
·
2020-08-05 21:59
Android
学习笔记
带输入框EditText的dialog
privatevoidshowDialog(){
AlertDialog
.Builderbuilder=newAlertDialog.Builder(SendMeActivity.this);LayoutInflaterinflater
android_bird_bird
·
2020-08-05 21:27
移动开发
自定义
AlertDialog
的实现步骤
packagecom.micen.suppliers.business.home;importandroid.app.
AlertDialog
;importandroid.content.Context;
Zuo_XP
·
2020-08-05 21:23
Android开发之自定义
AlertDialog
的大小
importandroid.support.annotation.ColorRes;importandroid.support.annotation.DrawableRes;importandroid.support.v7.app.
AlertDialog
xiayiye5
·
2020-08-05 21:06
Android总结
AlertDialog
使用xml自定义弹窗不显示、输入框不能输入问题解决(kotlin)
一、弹窗不显示解决方法1、获取mView:mView=LayoutInflater.from(mContext).inflate(R.layout.dialog,null,false)2、自定义弹窗使用setContentView()而不能使用setView()3、dialog?.setContentView(mView)必须放在dialog?.show()方法后面二、输入框不能输入内容解决方法1
往后都是程序员
·
2020-08-05 21:57
如何实现一个自定义
AlertDialog
?
importandroid.support.v7.app.
AlertDialog
;importandroid.support.v7.app.AppCompatActivity;.....intchoiceItem
lpftobetheone
·
2020-08-05 21:22
AndroidStudio
自定义一个退出
AlertDialog
(对话框)
关于
AlertDialog
:1、弹出对话框后,屏幕自动变暗,此时整个屏幕存在一张全屏半透明的蒙版
Mingyueyixi
·
2020-08-05 21:20
Android
Kotlin 自定义
AlertDialog
最近写的一个简易选择框长这个样子:有多种模式:1.输入框模式,有一个标题一个输入框。见上图(构造方法中isEdit字段true的时候是开启输入框)2.还有一种提示模式,有一个标题一个内容。扩展:更多模式比如一个标题一个内容一个输入框,等。。。/***CreatedbyXinghai.Zhaoon2020/8/4.*自定义选择弹框*/classMyDialog(context:Context?):A
深海呐
·
2020-08-05 21:47
#
Kotlin
Kotlin
Kotlin
自定义View
Kotlin
Dialog
Kotlin自定义Dialog
自定义AlertDialog
Android自定义
AlertDialog
的控件获取操作
Android自定义
AlertDialog
的控件获取操作在自定义的
AlertDialog
布局虽然可以显示,但是试过很多方法都不能获得其中的控件进行操作,找了很多方法最后这种方法可以.dialog的布局:
卓洛巴克
·
2020-08-05 11:54
安卓UI
上一页
10
11
12
13
14
15
16
17
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他