Mono for Android 对话框 倒计时

UI调度:

 

 public class Dispatcher : Handler
    {
        public override void HandleMessage(Message msg)
        {
            var ai = msg.Obj as ActionItem;
            if (ai != null)
            {
                try
                {
                    ai.Result = ai.d.DynamicInvoke(ai.args);
                }
                catch (TargetInvocationException e)
                {
                    ai.Error = e.InnerException;
                }
                catch (Exception e)
                {
                    ai.Error = e;
                }

                if (ai.mre != null)
                {
                    ai.mre.Set();
                }
            }
        }

        /// <summary>
        /// 同步调用
        /// </summary>
        public object Invoke(Delegate d, params object[] args)
        {
            if (Java.Lang.Thread.CurrentThread().Equals(Looper.Thread))
            {
                return d.DynamicInvoke(args);
            }

            var ai = new ActionItem
            {
                d = d,
                args = args,
                mre = new System.Threading.ManualResetEvent(false)
            };

            SendMessage(new Message { Obj = ai });

            ai.mre.WaitOne();

            if (ai.Error != null)
            {
                throw ai.Error;
            }

            return ai.Result;
        }

        /// <summary>
        /// 异步调用
        /// </summary>
        public void BeginInvoke(Delegate d, params object[] args)
        {
            var msg = new Message()
            {
                Obj = new ActionItem
                {
                    d = d,
                    args = args
                }
            };
            SendMessage(msg);
        }

        class ActionItem : Java.Lang.Object
        {
            public Delegate d;

            public object[] args;

            public object Result;

            public Exception Error;

            public System.Threading.ManualResetEvent mre;
        }
    }

 

String.xml中的样式:

 

 

<?xml version="1.0" encoding="utf-8"?>
<resources>
   

  <style name="dialog" parent="@android:style/Theme.Dialog">
    <item name="android:windowFrame">@null</item>
    <item name="android:windowIsFloating">true</item>

    <!--<item name="android:windowIsTranslucent">false</item>
    <item name="android:windowNoTitle">true</item>
    <item name="android:background">@android:color/black</item>
    <item name="android:windowBackground">@null</item>
    <item name="android:backgroundDimEnabled">false</item>-->
  </style>
 
</resources>

 

倒计时代码:

 

    public class TimerDialog
    {
        #region 成员

        AlertDialog mDialog;
        Context mContext;
        int mId = 100;
        Dispatcher dp = new Dispatcher();
        Timer timer;
        public int Seconds { get; set; }

        #endregion

        #region 方法

        /// <summary>
        /// 初始化
        /// </summary>
        public TimerDialog(Context ctx)
        {
            Seconds = 30;
            mContext = ctx;
            mDialog = new AlertDialog.Builder(new ContextThemeWrapper(mContext, Resource.Style.dialog)).Create();

            TextView text = new TextView(mContext);
            text.Id = mId;
            text.TextSize = 120;
            text.Text = Seconds.ToString();
            //字体白色
            text.SetTextColor(Android.Graphics.Color.White);
            //居中
            text.Gravity = GravityFlags.Center;

            mDialog.SetView(text);

            //阻止点击别的地方导致对话框关闭

            mDialog.SetCancelable(false);  

      }
  
        /// <summary>
        /// 显示对话框
        /// </summary>
        public void Show()
        {
            mDialog.SetIcon(Android.Resource.Drawable.IcDialogInfo);
            Start();
            mDialog.Show();
        }

        /// <summary>
        /// 开始倒计时
        /// </summary>
        public void Start()
        {
            Stop();
            timer = new Timer(AFunction, null, 0, 1000);
        }

        /// <summary>
        /// 倒计时中
        /// </summary>
        private void AFunction(object obj)
        {
            if (Seconds > 0)
            {
                Seconds -= 1;
                dp.BeginInvoke(new Action(() =>
                {
                    (mDialog.FindViewById(mId) as TextView).Text = (Seconds + 1).ToString();
                }));
            }
            else
            {
                Stop();
                dp.BeginInvoke(new Action(() =>
                {
                   mDialog.Dismiss();
                   mDialog.Dispose();
                   mDialog = null;
                }));
            }
        }

        /// <summary>
        /// 停止倒计时
        /// </summary>
        public void Stop()
        {
            if (timer != null)
            {
                timer.Dispose();
                timer = null;
            }
        }

        #endregion
    }

 

 

Activity的调用:

 

 TimerDialog c = new TimerDialog(this);
                c.Show();

 

 

转载于:https://www.cnblogs.com/Cindys/archive/2012/10/23/2735466.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/274554.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

熊kong作品资源链接_Kong雀技术:向世界展示您的设计作品

熊kong作品资源链接The door opened and I entered the bedroom of an apartment I was looking to rent. No furniture or items inside, it was almost empty except for a frame in the wall. It was a photo of a peacock. As I stared at it, I could not shake one clear…

漫谈前端工程化基建和架构设计 | 留言送书

大家好&#xff0c;我是若川。持续组织了近一年的源码共读活动&#xff0c;感兴趣的可以 加我微信 ruochuan12 参与&#xff0c;每周大家一起学习200行左右的源码&#xff0c;共同进步。本文留言抽奖送书&#xff0c;具体规则看文末。透过工程基建&#xff0c;架构有迹可循。前…

oracle中 rownum与rowid的理

一、 Oracle分页查询 我们先看学习一下oracle分页查询的语法示例&#xff0c;然后在具体学习用rownum的原理。 /*从第1条开始&#xff0c;每次选N个&#xff0c;从第1M个开始每次选N个*/ /**/ select t2.* from (select rid from (select r.rid, rownum linenum from (select r…

设计模式 日志系统设计_模式:我们设计系统的故事

设计模式 日志系统设计Design Patterns are some of the most over-used concepts in design today. And we all know what happens when you have some ideas all over the place. We start repeating them like parrots and applying them to everything, therefore distorti…

前端好还是后端好,看看7年前端和后端怎么说

大家好&#xff0c;我是若川。持续组织了近一年的源码共读活动&#xff0c;感兴趣的可以 加我微信 ruochuan12 参与&#xff0c;每周大家一起学习200行左右的源码&#xff0c;共同进步。同时极力推荐订阅我写的《学习源码整体架构系列》 包含20余篇源码文章。历史面试系列。另外…

提升UI技能的5个步骤

element ui 步骤重点 (Top highlight)What to do when you know how to use the software and know the basics of designing interfaces? There are a few simple things that you can do to take your skills to the next level, and you don’t need to invest in expensiv…

空降进阿里的 P10 都是什么人

周末见了几个朋友&#xff0c;吃饭时聊到他们前老板郭东白&#xff08;阿白&#xff09;&#xff0c;对了&#xff0c;我朋友在速卖通&#xff0c;他说阿白是 14 年来的阿里&#xff0c;直接就空降进了他们部门&#xff0c;当上首席架构师&#xff0c;后来又升到了 CTO&#xf…

linux下练习 c++ 关联式容器multimap特性

/* multimap特性 key可以重复 不支持下标访问 */ #include<iostream> #include<string> #include "print.h" #include<map> using namespace std; typedef pair<int,string> pairmp; typedef multimap<string,double> MS;int main() …

一致性设计,而不是一致性

一致性设计重点 (Top highlight)If we ask any design system advocate what are the main reasons to build and maintain a design system, chances are ‘Consistency’ will come up as first or second in their list, together with the ‘A single source of truth’ po…

如何在 React 应用中使用 Hooks、Redux 等管理状态

大家好&#xff0c;我是若川。持续组织了近一年的源码共读活动&#xff0c;感兴趣的可以 点此扫码加我微信 ruochuan12 参与&#xff0c;每周大家一起学习200行左右的源码&#xff0c;共同进步。同时极力推荐订阅我写的《学习源码整体架构系列》 包含20余篇源码文章。历史面试系…

长语音识别体验_如何为语音体验写作

长语音识别体验重点 (Top highlight)“Voice User Interface (VUI) Designer” is an increasingly prominent job title in the tech world. A VUI designer typically writes the conversation and designs the flow between a VUI — an invisible interface that communica…

表连接

初学SQL表连接的时候&#xff0c;什么笛卡尔积&#xff0c;左连接&#xff0c;右连接看的头都大了 后来看了《SQL Server技术内幕2008&#xff1a;T-SQL查询》之后&#xff0c;豁然开朗。今天写数据库又用到了表连接&#xff0c;印象有点模糊了&#xff0c;赶紧找地方写下来先。…

分析了1011个程序员的裁员情况后得出的启示

大家好&#xff0c;我是若川。持续组织了近一年的源码共读活动&#xff0c;感兴趣的可以 点此扫码加我微信 ruochuan12 参与&#xff0c;每周大家一起学习200行左右的源码&#xff0c;共同进步。同时极力推荐订阅我写的《学习源码整体架构系列》 包含20余篇源码文章。历史面试系…

定义设计系统

System is “the whole creation, the universe,” from Late Latin systema “an arrangement, system,” from Greek systema “organized whole, a whole compounded of parts”.系统是晚期拉丁语系统的“整体创造物&#xff0c;宇宙”&#xff0c;是希腊语系统的“一种安排…

如何备份linux系统(转)

如何备份linux系统 不像Windows&#xff0c;Linux不限制根用户存取任何东西&#xff0c;因此&#xff0c;你完全可以把一个分区上每一个的文件放入一个TAR文件中。来实施这一方法&#xff0c;用这个成为根用户&#xff1a;sudo su接着去你的文件系统的根目录&#xff08;在我们…

2w行代码、200个实战项目,助你修炼5大编程基本功。【送书《设计模式之美》】...

大家好&#xff0c;我是若川。之前送了很多书&#xff0c;现在又和异步图书合作再次争取了几本书&#xff0c;具体送书规则看文末。所谓练武不练功&#xff0c;到老一场空&#xff0c;以技术为驱动的程序员同样如此。面向对象编程范式、设计原则、代码规范、重构技巧和设计模式…

C++第10周项目2扩展之2参考——迭代求和

课程首页地址&#xff1a;http://blog.csdn.net/sxhelijian/article/details/7910565【项目2扩展之2&#xff08;选做&#xff09;】计算下面的式子&#xff0c;不能使用求幂函数pow()式一&#xff1a;#include <iostream> using namespace std; int main( ) { int i,m1;…

swift自行车品牌介绍_品牌101:简介

swift自行车品牌介绍Sometimes when I’m around designer friends and there’s a lull in the conversation one of us will blurt out, “What is branding, anyway?” Then we shrug our shoulders and chuckle, knowing that the answer is far too complex to sum up in…

flutter 透明度动画_Flutter中的动画填充+不透明度动画✨

flutter 透明度动画Flutter SDK provides us with many widgets which help us in animating elements on screen easily by implicitly managing the animations i.e. we need not worry about creating and managing intances of AnimationController during the lifecycle o…

阿里 P10 是怎样的存在?

谈起中国顶尖的程序员&#xff0c;很多人首先会想到之前的雷军、张小龙&#xff0c;还有现在的多隆、行癫、道哥等人&#xff0c;但今天我想聊一聊的这位大神&#xff0c;他的技术成就也同样令人瞩目。19 年获得国家技术发明二等奖、20 年获得国家计算机协会颁发的“ CCF 杰出工…