今天用到的自定义dialog有两种方式。方式一:添加一个xml文件,里面添加dialog的样式,然后: Window window = dialog.getWindow() ; window.setContentView(R.layout.login_wait_dialog); //自定义一个x.....
分类:
其他好文 时间:
2015-08-27 15:07:05
阅读次数:
183
我们知道,在很多时候,我们都不用Android内置的一些控件,而是自己自定义一些自己想要的控件,这样显得界面更美观。 今天主要是讲自定义AlertDialog和popupWindow的使用,在很多需求中,我们往往需要这样一个功能...
分类:
微信 时间:
2015-08-26 20:40:56
阅读次数:
559
先来看主页面布局
main_activity.xml里面只有一个button(添加点击事件,弹出加载框)
再看MainActivity
package com.example.loadingdialog;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
public cl...
分类:
其他好文 时间:
2015-06-08 23:20:56
阅读次数:
131
图片省略了不上传了。。。
首先看activity_main.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent...
分类:
其他好文 时间:
2015-05-09 06:38:38
阅读次数:
168
/***自定义AlertDialog*用于退出程序按钮**/publicclassAlertDialog{ Contextcontext; android.app.AlertDialogad; TextViewtitleView; TextViewmessageView; LinearLayoutbuttonLayout; publicAlertDialog(Contextcontext){ this.context=context; ad=newandroid.app.Aler..
分类:
其他好文 时间:
2015-04-30 09:07:18
阅读次数:
139
安卓自定义AlertDialog,原理很简单:
AlertDialog dialog = new AlertDialog.Builder(MainActivity.this).create();
dialog.show();
Window window = dialog.getWindow();
window.setContentView(R.layout.aler...
分类:
微信 时间:
2015-04-24 12:40:11
阅读次数:
291
原文 : 关于带有EditText的自定义AlertDialog,不能弹出软件盘的解决方法mDialog = new AlertDialog.Builder(context, R.style.AlertDialog).create(); mDialog ....
分类:
其他好文 时间:
2015-04-17 19:57:27
阅读次数:
120
我们知道,在很多时候,我们都不用Android内置的一些控件,而是自己自定义一些自己想要的控件,这样显得界面更美观。
今天主要是讲自定义AlertDialog的使用,在很多需求中,我们往往需要这样一个功能,就是点击一个按钮或者其它控件,弹出一个对话框,让用户可以在这个对话框中做一些事,比如输入、选择、提示.....等等,那么,这个弹出对话框的功能我们都知道可以用popupWind...
分类:
微信 时间:
2015-02-27 21:43:15
阅读次数:
602
(1)布局文件:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_heigh...
分类:
移动开发 时间:
2015-01-14 12:46:33
阅读次数:
219