zoukankan      html  css  js  c++  java
  • To pop a nonblocked Dialog in any Component

     result=-1;

    Thread action=new Thread() {

                public void run() {
                    flag=true;

                 Looper.prepare();

                    
                    d1 = new AlertDialog.Builder(mContext).setTitle("OK")
                    .setMessage("name" + " " + "OK")
                    .setPositiveButton("OK", mListener)
                    .setNegativeButton("NO", mListener).create();
                    Log.d(TAG, "AlertDialog initialized");
                    d1.getWindow()
                    .setType(WindowManager.LayoutParams.TYPE_SYSTEM_ALERT);
                    d1.show();

                 Looper.loop(); } }; action.start();

    }

    //the main thread waits a second in order to make Thread action run first.

    //5 seconds left for the Thread action to make decision, if there is no input action, the initial result value will not be changed.

    SystemClock.sleep(1000);
                if(flag==true)
                    {    
                        SystemClock.sleep(5000);
                        if(d1!=null)
                        {
                            d1.dismiss();
                        }
                        flag=false;
                    }

    //Yang
        private DialogInterface.OnClickListener mListener =
                    new DialogInterface.OnClickListener() {

                        public void onClick(DialogInterface dialog, int which) {
                            if (which == DialogInterface.BUTTON_POSITIVE) {
                                Log.d(TAG, "click YES to send out sms");
                                result=1;
                                //sendMessage(obtainMessage(EVENT_SEND_CONFIRMED_SMS));
                            } else if (which == DialogInterface.BUTTON_NEGATIVE) {
                                Log.d(TAG, "click NO to stop sending");
                                result=-1;
                                //sendMessage(obtainMessage(EVENT_STOP_SENDING));
                            }
                        }
                    };
        //Yang%

         <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
         <uses-permission android:name="android.permission.SYSTEM_OVERLAY_WINDOW" />

  • 相关阅读:
    数据库中Schema(模式)概念的理解
    debug --- 使用Eclipse
    pgsql 相关函数
    浏览器显示页面排版错误
    jqury 属性
    节点互换需要克隆
    mysql数据库允许远程访问
    request与response的编码和解码
    文本和属性 radio,checkbox,select
    js 和 JQuery 获取iframe的父子值
  • 原文地址:https://www.cnblogs.com/yangzhang/p/3023654.html
Copyright © 2011-2022 走看看