Android入门:Toast的4种特效

2015-01-24 09:53:25|?次阅读|上传:wustguangh【已有?条评论】发表评论

关键词:Java, Android, 移动应用, 界面设计|来源:唯设编程网

Toast在Android中的功能类似于Java的JOptionPane类或者MFC的AfxMessageBox函数,方便地实现给用户弹出提示信息。关于Toast,谷歌给出的官方解释如下:

A toast provides simple feedback about an operation in a small popup. It only fills the amount of space required for the message and the current activity remains visible and interactive. For example, navigating away from an email before you send it triggers a "Draft saved" toast to let you know that you can continue editing later. Toasts automatically disappear after a timeout.

作为入门实例,本文介绍Toast常用的4中显示方式,即默认显示、在屏幕居中显示、显示带图片的Toast和自定义布局的Toast。首先给出项目的实现效果:

1. 默认Toast

Android入门:Toast的4种特效

2. 屏幕居中的Toast

Android入门:Toast的4种特效

3. 带图片的Toast

Android入门:Toast的4种特效

4. 完全自定义的Toast

Android入门:Toast的4种特效

由于本文面向没有基础的入门初学者,所以我们先介绍工程的创建,然后再介绍Toast的4种显示特效。

发表评论0条 】
网友评论(共?条评论)..
Android入门:Toast的4种特效