今天打开技术博客发现自己的上一篇技术博客已经是去年11月份的了。但凡是生活中或是学习中的许多事情我们一直都有在做,只是并没有一直在记录。有时候脑袋真的很像存储机制,即使脑容量有着科学研究的浩如宇宙,但大脑之所谓有“大”来修饰,终归还是会有溢出的时候。所以对于学习生活中运行过的“程序”所残留的内存,要么释放,要么记录加以保管,而技术博客正是这样的存在。
做技术的不空谈,现在开始。。。
在androidApp的开发中会遇到许多需要人机交互的组件,借此获取用户所作出的选择或是反馈。这样的一些组件到底有多少种又该如何实例呢? 看下图:
而这些组件各自的效果 如下图:
进行插入图片操作时很想吐槽该网站。。。。。
具体代码实现如下:
package com.example.dialogtest; import java.util.ArrayList; import android.os.Bundle; import android.view.Gravity; import android.view.LayoutInflater; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.EditText; import android.widget.PopupWindow; import android.widget.Toast; import android.app.ActionBar.LayoutParams; import android.app.Activity; import android.app.AlertDialog; import android.app.ProgressDialog; import android.content.DialogInterface; import android.graphics.drawable.BitmapDrawable; import android.graphics.drawable.ColorDrawable; public class MainActivity extends Activity implements Runnable {//Runnable线程接口 下面写进度条选择框时模拟使用 private Button btn_diaNormal; private Button btn_diaMulti; private Button btn_diaList; private Button btn_diaSinChos; private Button btn_diaMultiChos; private Button btn_diaProcess; private Button btn_diaReadProcess; private Button btn_diaCustom; private Button btn_popUpDia; private PopupWindow window=null; private Button cusPopupBtn1; private View popupView; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); getView(); setListener(); } private void getView() { btn_diaNormal=(Button)findViewById(R.id.btn_diaNormal); btn_diaMulti=(Button)findViewById(R.id.btn_diaMulti); btn_diaList=(Button)findViewById(R.id.btn_diaList); btn_diaSinChos=(Button)findViewById(R.id.btn_diaSigChos); btn_diaMultiChos=(Button)findViewById(R.id.btn_diaMultiChos); btn_diaProcess=(Button)findViewById(R.id.btn_diaProcess); btn_diaReadProcess=(Button)findViewById(R.id.btn_diaReadProcess); btn_diaCustom=(Button)findViewById(R.id.btn_diaCustom); btn_popUpDia=(Button)findViewById(R.id.btn_popUpDia); } private void setListener() { final Button Button[] = {btn_diaNormal,btn_diaMulti,btn_diaList, btn_diaSinChos, btn_diaMultiChos,btn_diaProcess,btn_diaReadProcess, btn_diaCustom,btn_popUpDia}; for(int i = 0;i<9;i++){ Button[i].setOnClickListener(btnListener); } } private Button.OnClickListener btnListener= new Button.OnClickListener() { public void onClick(View v) { if(v instanceof Button) { int btnId=v.getId(); switch(btnId) { case R.id.btn_diaNormal: showNormalDia(); break; case R.id.btn_diaMulti: showMultiDia(); break; case R.id.btn_diaList: showListDia(); break; case R.id.btn_diaSigChos: showSinChosDia(); break; case R.id.btn_diaMultiChos: showMultiChosDia(); break; case R.id.btn_diaReadProcess: showReadProcess(); break; case R.id.btn_diaProcess: showProcessDia(); break; case R.id.btn_diaCustom: showCustomDia(); break; case R.id.btn_popUpDia: showCusPopUp(v); break; default: break; } } } }; /*普通的对话框*/ private void showNormalDia() { AlertDialog.Builder bui=new AlertDialog.Builder(MainActivity.this); bui.setIcon(R.drawable.ic_launcher); bui.setTitle("普通的对话框"); bui.setMessage("这是普通对话框中的message内容"); bui.setPositiveButton("YES", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int which) showClickMessage("您点按了确定"); } }); bui.setNegativeButton("NO", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int which) { showClickMessage("您点按了取消"); } }); bui.create().show();//创建并显示 } /*多按钮对话框*/ private void showMultiDia() { AlertDialog.Builder multiDia=new AlertDialog.Builder(MainActivity.this); multiDia.setTitle("多选项对话框"); multiDia.setPositiveButton("Button_1", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int which) { showClickMessage("您点按了按钮一"); } }); multiDia.setNeutralButton("Button_2", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int which) { showClickMessage("您点按了按钮二"); } }); multiDia.setNegativeButton("Button_3", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int which) { showClickMessage("您点按了按钮三"); } }); multiDia.create().show();//创建并显示 } /*列表对话框*/ private void showListDia() { //声明一个存放选项的数组 final String[] mList={"选项1","选项2","选项3","选项4","选项5","选项6","选项7"}; AlertDialog.Builder listDia=new AlertDialog.Builder(MainActivity.this); listDia.setTitle("这是一个列表对话框"); listDia.setItems(mList, new DialogInterface.OnClickListener() {//setItems(队列对象,监听器); public void onClick(DialogInterface dialog, int which) { /*下标是从0开始的*/ showClickMessage(mList[which]); } }); listDia.create().show();//创建并显示 } /*单项选择对话框*/ int yourChose; private void showSinChosDia() { //声明一个存放选项的数组 final String[] mList={"选项1","选项2","选项3","选项4","选项5","选项6","选项7"}; yourChose=-1; AlertDialog.Builder sinChosDia=new AlertDialog.Builder(MainActivity.this); sinChosDia.setTitle("单项选择对话框"); sinChosDia.setSingleChoiceItems(mList, 0, new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int which) { yourChose=which; } }); sinChosDia.setPositiveButton("确定", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int which) { if(yourChose!=-1) { showClickMessage(mList[yourChose]); } } }); sinChosDia.create().show();//创建并显示 } /*多项选择对话框*/ ArrayList<Integer> myChose= new ArrayList<Integer>(); private void showMultiChosDia() { final String[] mList={"选项1","选项2","选项3","选项4","选项5","选项6","选项7"}; final boolean mChoseSts[]={false,false,false,false,false,false,false}; myChose.clear();//初始化数组队列 AlertDialog.Builder multiChosDia=new AlertDialog.Builder(MainActivity.this); multiChosDia.setTitle("多项选择对话框"); multiChosDia.setMultiChoiceItems(mList, mChoseSts, new DialogInterface.OnMultiChoiceClickListener() { public void onClick(DialogInterface dialog, int which, boolean isChecked) { if(isChecked) { myChose.add(which); } else { myChose.remove(which); } } }); multiChosDia.setPositiveButton("确定", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int which) { int size=myChose.size(); String str=""; for(int i=0;i<size;i++) { str+=mList[myChose.get(i)]; } showClickMessage(str); } }); multiChosDia.create().show(); } //进度读取框需要模拟读取 ProgressDialog mReadProcessDia=null; public final static int MAX_READPROCESS = 100; private void showReadProcess() { mReadProcessDia=new ProgressDialog(MainActivity.this); mReadProcessDia.setProgress(0); mReadProcessDia.setTitle("进度条窗口"); mReadProcessDia.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL); mReadProcessDia.setMax(MAX_READPROCESS); mReadProcessDia.show(); Thread t = new Thread(this); t.start(); } //开启一个线程,循环的累加,一直到100停止 @Override //重写Runnable中的方法 public void run() { int Progress= 0; while(Progress < MAX_READPROCESS) { try { Thread.sleep(100); Progress++; mReadProcessDia.incrementProgressBy(1); } catch (InterruptedException e) { e.printStackTrace(); } } //读取完后窗口自消失 mReadProcessDia.cancel(); } /*读取中的对话框*/ private void showProcessDia() { ProgressDialog processDia= new ProgressDialog(MainActivity.this); processDia.setTitle("进度条框"); processDia.setMessage("内容读取中..."); processDia.setIndeterminate(true); processDia.setCancelable(true); processDia.show(); } /*自定义对话框*/ private void showCustomDia() { AlertDialog.Builder customDia=new AlertDialog.Builder(MainActivity.this); final View viewDia=LayoutInflater.from(MainActivity.this).inflate(R.layout.custom_dialog, null); customDia.setTitle("自定义对话框"); customDia.setView(viewDia); customDia.setPositiveButton("YES", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int which) { EditText diaInput=(EditText) viewDia.findViewById(R.id.txt_cusDiaInput); showClickMessage(diaInput.getText().toString()); } }); customDia.create().show(); } /*popup window 来实现*/ private void showCusPopUp(View parent) { if(window == null) { popupView=LayoutInflater.from(MainActivity.this).inflate(R.layout.dia_cuspopup_dia, null); cusPopupBtn1=(Button)popupView.findViewById(R.id.diaCusPopupSure); window =new PopupWindow(popupView,LayoutParams.FILL_PARENT,LayoutParams.FILL_PARENT); } window.setAnimationStyle(R.style.AppBaseTheme); /*必须调用setBackgroundDrawable, 因为popupwindow在初始时,会检测background是否为null, 如果是onTouch or onKey events就不会相应,所以必须设置background*/ /*弹出pop之后,不响应键盘事件了,这个其实是焦点在pop里面的view去了。*/ window.setFocusable(true);//使window失焦 window.setBackgroundDrawable(new BitmapDrawable()); window.update(); window.showAtLocation(parent, Gravity.CENTER_VERTICAL, 0, 0); cusPopupBtn1.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { showClickMessage("popup window的确定"); } }); } /*显示点击的内容*/ private void showClickMessage(String message) { Toast.makeText(MainActivity.this, "你选择的是: "+message, Toast.LENGTH_SHORT).show(); } } 布局文件:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@drawable/abc123" android:gravity="bottom" android:nextFocusForward="@drawable/abc123" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" tools:context=".MainActivity" > <Button android:id="@+id/btn_diaProcess" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_above="@+id/btn_diaCustom" android:layout_alignLeft="@+id/btn_diaCustom" android:text="读取中Dialog" android:textColor="#faf0e6" /> <Button android:id="@+id/btn_diaCustom" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_above="@+id/btn_popUpDia" android:layout_alignLeft="@+id/btn_diaReadProcess" android:text="自定义Dialog" android:textColor="#faf0e6" /> <Button android:id="@+id/btn_diaReadProcess" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_above="@+id/btn_diaProcess" android:layout_alignParentRight="true" android:text="进度条Dialog" android:textColor="#faf0e6" /> <Button android:id="@+id/btn_diaMultiChos" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_above="@+id/btn_diaReadProcess" android:layout_alignLeft="@+id/btn_diaReadProcess" android:text="多项选择Dialog" android:textColor="#faf0e6" /> <Button android:id="@+id/btn_diaMulti" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignLeft="@+id/btn_diaNormal" android:layout_below="@+id/btn_diaNormal" android:text="多按钮Dialog" android:textColor="#faf0e6" /> <Button android:id="@+id/btn_diaList" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignLeft="@+id/btn_diaSigChos" android:layout_below="@+id/btn_diaMulti" android:text="列表Dialog" android:textColor="#faf0e6" /> <Button android:id="@+id/btn_diaNormal" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignLeft="@+id/textView1" android:layout_alignTop="@+id/textView1" android:scrollbarStyle="outsideOverlay" android:text="普通Dialog" android:textColor="#faf0e6" /> <Button android:id="@+id/btn_popUpDia" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignLeft="@+id/btn_diaCustom" android:layout_alignParentBottom="true" android:text="PopUpWindow实现的dialog" android:textColor="#faf0e6" /> <TextView android:id="@+id/textView1" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignLeft="@+id/btn_diaList" android:layout_alignParentTop="true" android:text="各种Dialog合集" android:textColor="#faf0e6" /> <Button android:id="@+id/btn_diaSigChos" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_above="@+id/btn_diaMultiChos" android:layout_alignLeft="@+id/btn_diaMultiChos" android:text="单项选择Dialog" android:textColor="#faf0e6" /> </RelativeLayout>
还有相应的两个布局文件,即自定义对话框和popup window实现的对话框中的布局文件:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <EditText android:id="@+id/txt_cusDiaInput" android:layout_width="match_parent" android:layout_height="wrap_content" android:ems="10" > <requestFocus /> </EditText> </LinearLayout>
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent" android:background="@drawable/abc123" > <Button android:id="@+id/diaCusPopupSure" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignBaseline="@+id/button1" android:layout_alignBottom="@+id/button1" android:layout_marginLeft="34dp" android:layout_toRightOf="@+id/button1" android:text="NO" /> <Button android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:layout_alignParentLeft="true" android:layout_marginBottom="185dp" android:layout_marginLeft="71dp" android:text="YES" /> <TextView android:id="@+id/textView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_above="@+id/diaCusPopupSure" android:layout_alignLeft="@+id/button1" android:layout_marginBottom="18dp" android:text="是否确定您的选择?" android:textSize="20sp" /> <TextView android:id="@+id/textView2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_above="@+id/textView1" android:layout_centerHorizontal="true" android:layout_marginBottom="50dp" android:text="这是通过popup window来实现" android:textSize="20sp" /> </RelativeLayout> </LinearLayout>
至此,android中各类Dialog的实例已经全贴上去了。希望我的总结对大家有所帮助。
晴时有风阴有时雨,听说~下雨天技术博客和敲代码更配哦。。。
梣梓cenzi
2015 4 5
相关推荐
在Android开发中,Dialog是一种常见的用户交互元素,用于在用户界面中显示临时信息或进行简单的交互操作。通常,当我们使用AlertDialog构建一个对话框时,它的默认行为是在用户点击按钮(如"确定"或"取消")后自动...
2. 创建Dialog实例:使用库提供的类,如`CustomDialog`,根据需求设置Dialog的样式、内容、按钮等。 3. 在任意类中调用:由于库的封装,我们可以在任何地方创建并显示Dialog,不必局限于Activity或Fragment。 4. ...
在Android开发中,`Dialog`是一种非常常用的组件,它用于在主界面之上显示一个临时的窗口,用于向用户展示信息或者获取用户的输入。本节我们将深入探讨如何创建和使用列表对话框(List Dialog)。 列表对话框是`...
1. **创建Dialog实例**:通过调用`new Dialog(context)`,其中`context`通常是当前Activity的上下文。 2. **设置布局**:为Dialog设置布局资源文件,通常是在`setContentView()`方法中指定XML布局文件。 3. **定制...
在Android开发中,Dialog是一种非常常见的用户交互组件,它用于在主界面之上显示一个弹出式窗口,通常用于展示警告信息、确认操作或者提供一种选择方式。本篇将重点讲解如何创建并使用单选列表对话框(Single Choice...
1. 创建Dialog实例:通过调用`new AlertDialog.Builder(Context)`或`new ProgressDialog(Context)`来初始化Dialog对象。 2. 设置Dialog内容:包括标题(`setTitle()`)、消息(`setMessage()`)、按钮(`...
综上所述,"安卓Android源码——DialogShow.zip"可能包含了如何创建、定制以及在实际应用中使用Dialog的实例代码。通过学习和理解这些代码,开发者可以提升对Android Dialog机制的理解,进而提高应用的用户界面设计...
Builder模式使得我们可以按步骤构建对话框,每一步调用一个方法,最后通过build()方法生成Dialog实例。这种方式既方便又灵活,避免了代码的冗余。 对于更复杂的对话框需求,我们可以直接继承Dialog类并重写它的...
在安卓(Android)开发中,Dialog对话框是用户界面(UI)设计中不可或缺的一部分,它用于向用户显示临时信息或需要用户做出决策的情况。在Android源码中,Dialog类及其子类提供了丰富的功能来实现各种对话框样式。...
在安卓(Android)平台上,开发人员经常需要创建各种对话框(Dialog)来提供用户交互,例如显示警告信息、获取用户输入或展示详细信息等。在默认情况下,Android系统的Dialog具有其特有的Material Design风格,但...
"安卓Android源码——-styled-dialogs可自定义样式的dialog.zip"是一个示例项目,它展示了如何在Android应用中创建和使用自定义样式的Dialog。该项目名为"android-styled-dialogs-master",我们可以从中学到以下几个...
在安卓(Android)开发中,有时我们希望在项目启动时向用户展示一些信息或提示,这时可以使用一种特殊的对话框(Dialog)——悬浮且带有关闭按钮的Dialog。本压缩包"安卓Android源码——项目启动的时候,弹出的悬浮...
本资源“安卓Android源码——HerilyAlertDialog完全自定义的Dialog.zip”正是为了帮助开发者实现这一目标,通过源码实例展示了如何创建一个高度定制的HerilyAlertDialog。 首先,让我们了解一下Android中的Dialog。...
继承`AppCompatDialogFragment`或`DialogFragment`,并在`onCreateDialog()`方法中构建并返回自定义的Dialog实例。在这个方法里,使用之前创建的布局文件,并设置必要的属性,如背景颜色、透明度等。 ```java ...
3. **Builder模式**: `android-styled-dialogs` 可能使用 Builder 模式来构造 Dialog 实例,这种模式使代码更易读,同时允许开发者按需设置各种属性。 4. **回调接口**: 为了响应用户点击事件,库可能包含回调接口...
在Android开发中,对话框(Dialog)是一种常见的用户交互组件,用于显示临时信息或与用户进行简单的交互。本文将深入探讨如何创建一个类似iOS风格的对话框,这将有助于为Android应用增添一种更加精致和一致的用户...
在`AlertDialog.Builder`中,你可以设置对话框的标题、消息、按钮等元素,然后通过调用`create()`方法创建Dialog实例。而`DialogFragment`则更适合需要生命周期管理的复杂Dialog,例如当设备旋转时,DialogFragment...
这个压缩包"安卓Andriod源码——实现Windows风格的Dialog.zip"提供了如何在Android应用中创建这种特殊Dialog的方法。在这里,我们将深入探讨相关知识点。 1. 自定义Dialog:Android系统提供了多种内置的Dialog样式...
通过研究"安卓Android源码——android 自定义对话框.zip"中的示例,你可以学习到如何将自定义布局应用于对话框,以及如何处理各种交互事件。这将帮助你更加熟练地在Android应用中运用自定义对话框,提升用户体验。...