`

【翻译】(19)Toast通知

 
阅读更多

 

【翻译】(19)Toast通知

 

see

http://developer.android.com/guide/topics/ui/notifiers/toasts.html

 

原文见

http://developer.android.com/guide/topics/ui/notifiers/toasts.html

 

-------------------------------

 

Toast Notifications

 

Toast通知

 

-------------------------------

 

Quickview

 

快速概览

 

A toast is a message that appears on the surface of the screen for a moment, but it does not take focus (or pause the current activity), so it cannot accept user input

 

一个Toast是一种出现在屏幕表面上一阵子的消息,但它不获取焦点(或暂停当前活动),所以它不能接受用户输入

 

You can customize the toast layout to include images

 

你可以定制Toast布局以包含图片

 

In this document

 

本文目录

 

* The Basics 基础

* Positioning your Toast 放置你的Toast

* Creating a Custom Toast View 创建一个自定义Toast视图

 

Key classes 

 

关键类

 

Toast

 

-------------------------------

 

A toast notification is a message that pops up on the surface of the window. It only fills the amount of space required for the message and the user's current activity remains visible and interactive. The notification automatically fades in and out, and does not accept interaction events.

 

一个Toast通知是一种消息,在窗口的表面上弹出。它只填充消息所需数量的空间,而用户的当前活动保持可见和可交互。通知自动地淡进和淡出,并且不接受交互事件。

 

The screenshot below shows an example toast notification from the Alarm application. Once an alarm is turned on, a toast is displayed to assure you that the alarm was set.

 

下面的截屏展示一个来自闹钟应用程序的示例Toast通知。一旦一个闹钟被打开,Toast被显示以向你确保闹钟被设置。

 

(图略:

这个闹钟被设置在从现在开始17小时又57分钟后。

 

A toast can be created and displayed from an Activity or Service. If you create a toast notification from a Service, it appears in front of the Activity currently in focus.

 

Toast可以从Activity或Service中被创建和显示。如果你从一个Service中创建一个Toast通知,那么它出现在当前焦点下的Activity的前方。

 

If user response to the notification is required, consider using a Status Bar Notification.

 

如果需要用户响应通知,请考虑使用状态栏通知。

 

-------------------------------

 

The Basics

 

基础

 

First, instantiate a Toast object with one of the makeText() methods. This method takes three parameters: the application Context, the text message, and the duration for the toast. It returns a properly initialized Toast object. You can display the toast notification with show(), as shown in the following example:

 

首先,用其中一种makeText()方法实例化一个Toast对象。这个方法传入三个参数:应用程序Context,文本消息,以及Toast的持续时间。它返回一个被正确地初始化的Toast对象。你可以用show()显示Toast通知,正如下面的示例中所示:

 

-------------------------------

 

Context context = getApplicationContext();

CharSequence text = "Hello toast!";

int duration = Toast.LENGTH_SHORT;

 

Toast toast = Toast.makeText(context, text, duration);

toast.show();

 

-------------------------------

 

This example demonstrates everything you need for most toast notifications. You should rarely need anything else. You may, however, want to position the toast differently or even use your own layout instead of a simple text message. The following sections describe how you can do these things.

 

这个示例演示你对大多数Toast通知所需的任何东西。你应该极少地需要其它任何东西。然而,你可能希望不一样地放置Toast甚至或者使用你自己的布局而非简单的文本消息。以下章节描述你如何做这些事情。

 

You can also chain your methods and avoid holding on to the Toast object, like this:

 

你还可以链接你的方法并避免一直持有Toast对象,像这样:

 

-------------------------------

 

Toast.makeText(context, text, duration).show();

 

-------------------------------

 

-------------------------------

 

Positioning your Toast

 

放置你的Toast

 

A standard toast notification appears near the bottom of the screen, centered horizontally. You can change this position with the setGravity(int, int, int) method. This accepts three parameters: a Gravity constant, an x-position offset, and a y-position offset.

 

一个标准Toast通知出现在屏幕底部附近,水平地居中。你可以用setGravity(int, int, int)方法改变这个位置。它接受三个参数:一个Gravity常量,一个x位置偏移,以及一个y位置偏移。

 

For example, if you decide that the toast should appear in the top-left corner, you can set the gravity like this:

 

例如,如果你决定Toast应该出现在左上角,你可以像这样设置重力:(注:重力方向是指淡进的方向?)

 

-------------------------------

 

toast.setGravity(Gravity.TOP|Gravity.LEFT, 0, 0);

 

-------------------------------

 

If you want to nudge the position to the right, increase the value of the second parameter. To nudge it down, increase the value of the last parameter.

 

如果你希望把位置微移到右边,请增加第二参数的值。如果想把它向下微移,请增加最后参数的值。

 

Creating a Custom Toast View

 

创建一个自定义Toast视图

 

If a simple text message isn't enough, you can create a customized layout for your toast notification. To create a custom layout, define a View layout, in XML or in your application code, and pass the root View object to the setView(View) method.

 

如果一个简单文本消息不足够,你可以为你的Toast通知创建一个定制的布局。为了创建一个定制布局,在XML或在你的应用程序代码中定义一个View布局,并传递根View对象给setView(View)方法。

 

For example, you can create the layout for the toast visible in the screenshot to the right with the following XML (saved as toast_layout.xml):

 

例如,你可以用以下的XML(存储为toast_layout.xml)为Toast创建右边截屏中所示的布局:

 

(图略:

你好!这是一个自定义Toast!

 

-------------------------------

 

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

              android:id="@+id/toast_layout_root"

              android:orientation="horizontal"

              android:layout_width="fill_parent"

              android:layout_height="fill_parent"

              android:padding="10dp"

              android:background="#DAAA"

              >

    <ImageView android:id="@+id/image"

               android:layout_width="wrap_content"

               android:layout_height="fill_parent"

               android:layout_marginRight="10dp"

               />

    <TextView android:id="@+id/text"

              android:layout_width="wrap_content"

              android:layout_height="fill_parent"

              android:textColor="#FFF"

              />

</LinearLayout>

 

-------------------------------

 

Notice that the ID of the LinearLayout element is "toast_layout". You must use this ID to inflate the layout from the XML, as shown here:

 

注意LinearLayout元素的ID是toast_layout。你必须使用这个ID从XML中解压布局,正如这里显示的那样:

 

-------------------------------

 

LayoutInflater inflater = getLayoutInflater();

View layout = inflater.inflate(R.layout.toast_layout,

                               (ViewGroup) findViewById(R.id.toast_layout_root));

 

ImageView image = (ImageView) layout.findViewById(R.id.image);

image.setImageResource(R.drawable.android);

TextView text = (TextView) layout.findViewById(R.id.text);

text.setText("Hello! This is a custom toast!");

 

Toast toast = new Toast(getApplicationContext());

toast.setGravity(Gravity.CENTER_VERTICAL, 0, 0);

toast.setDuration(Toast.LENGTH_LONG);

toast.setView(layout);

toast.show();

 

-------------------------------

 

First, retrieve the LayoutInflater with getLayoutInflater() (or getSystemService()), and then inflate the layout from XML using inflate(int, ViewGroup). The first parameter is the layout resource ID and the second is the root View. You can use this inflated layout to find more View objects in the layout, so now capture and define the content for the ImageView and TextView elements. Finally, create a new Toast with Toast(Context) and set some properties of the toast, such as the gravity and duration. Then call setView(View) and pass it the inflated layout. You can now display the toast with your custom layout by calling show().

 

首先,用getLayoutInflater()(或getSystemService())获取LayoutInflater,然后从XML中使用inflate(int, ViewGroup)解压布局。第一参数是布局资源ID,而第二参数是根View。你可以使用这个解压布局在布局中查找更多View对象,所以现在可以捕获并定义ImageView和TextView元素的内容。最后,用Toast(Context)创建一个新的Toast并设置Toast的一些属性,诸如重力和持续时间。然后调用setView(View)并传给它解压布局。你现在可以通过调用show()显示带有你自定义布局的Toast。

 

-------------------------------

 

Note: Do not use the public constructor for a Toast unless you are going to define the layout with setView(View). If you do not have a custom layout to use, you must use makeText(Context, int, int) to create the Toast.

 

注意:不为一个Toast使用public构造函数,除非你打算用setView(View)定义布局。如果你没有一个要使用的自定义布局,你必须使用makeText(Context, int, int)创建Toast。

 

-------------------------------

 

Except as noted, this content is licensed under Apache 2.0. For details and restrictions, see the Content License.

 

除特别说明外,本文在Apache 2.0下许可。细节和限制请参考内容许可证。

 

Android 4.0 r1 - 01 Dec 2011 20:53

 

-------------------------------

 

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

 

(此页部分内容基于Android开源项目,以及使用根据创作公共2.5来源许可证描述的条款进行修改)


分享到:
评论

相关推荐

    易语言仿Win10弹出Toast通知源码

    本篇将详细讲解如何使用易语言来创建仿Win10的弹出Toast通知源码。 在Windows 10操作系统中,Toast通知是一种常见的用户交互方式,用于向用户展示简短的信息,如新邮件、应用更新等。这些通知通常会在屏幕右下角...

    易语言源码易语言Toast通知源码.rar

    在本压缩包“易语言源码易语言Toast通知源码.rar”中,包含的是使用易语言实现的Toast通知功能的源代码。Toast通知是一种在用户界面上短暂显示信息的方式,通常用于提示用户一些不打断当前操作的信息,如程序运行...

    易语言Toast通知源码

    在易语言中,"Toast通知"是程序设计中的一种常见功能,主要用于向用户显示短暂的提示信息,而不会中断用户的正常操作。这些提示通常会在屏幕的某个位置短暂出现,然后自动消失,类似于面包烤好后的“吐司”弹出,...

    易语言仿Win10弹出Toast通知

    易语言仿Win10弹出Toast通知源码,仿Win10弹出Toast通知,WndProc,LOWORD,HIWORD,Gdiplus_初始化,Init_SUITypedef_NineGrids,P_SUITypedef_NineGrids,SUIRGBtoARGB,SUIDrawGraphicNineGrids,SUIDrawGraphicAlpha,RPM,...

    Toast通知.rar

    在Android开发中,Toast是一种轻量级的通知方式,它能够在屏幕上的某个位置短暂显示一条信息,然后自动消失,不会中断用户的操作。这个“Toast通知.rar”文件很可能包含了一个易语言编写的Android应用示例,用于展示...

    C# Window10原生系统通知Toast

    在C#编程环境中,开发Windows 10原生系统通知,即Toast通知,是一种与用户交互的有效方式。这种通知能够直接出现在操作系统的任务栏通知区域,吸引用户的注意力,并且允许用户进行点击或者其他交互操作。本篇文章将...

    易语言Toast通知

    易语言Toast通知源码,Toast通知,Initialize,RunMessageLoop,WndProc,DisplayToast,CreateToast,CreateToastXml,SetImageSrc,SetTextValues,SetNodeValueString,L,SUCCEEDED,LOWORD,COM_ToastEventHandler,...

    Android-AndroidToast即便关闭了通知权限也会正常显示

    标题提到的“Android Toast即便关闭了通知权限也会正常显示”是一个关键点,这涉及到Android系统的权限管理和Toast的工作原理。 首先,我们来了解`Android Toast`的基本使用。创建一个Toast非常简单,通常通过`...

    Toast通知源码

    在Windows应用开发中,Toast通知是一种非常重要的交互方式,它能够向用户展示简短的信息,而无需中断他们的当前操作。这种技术广泛应用于各种Windows应用程序,包括桌面应用和UWP(Universal Windows Platform)应用...

    Windows-10-Toast-Notifications, python 库显示 Windows 10 Toast通知.zip

    Windows-10-Toast-Notifications, python 库显示 Windows 10 Toast通知 Windows 10 Toast通知 用于显示 Windows 10 Toast通知的easy-to-use python 库,这对 Windows GUI开发非常有用。 安装pip install win

    Toast追踪器-Toast弹出通知来源查看

    Toast追踪器-Toast弹出通知来源查看

    状态栏 Toast 通知.zip

    状态栏 Toast 通知是一种在 Android 系统中广泛使用的轻量级提示技术,它能够向用户展示短暂的信息,而不会打断他们的操作。"HYToast" 是一个开源项目,旨在提供更加灵活、定制化的状态栏 Toast 实现。在这个项目中...

    Android-Toast通知polyfill

    在Android应用开发中,"Toast通知polyfill"是一种技术手段,用于在不支持原生Toast功能的环境中模拟或增强Toast的显示效果。Toast是Android系统提供的一种轻量级的反馈机制,它会在屏幕上的某个位置短暂显示一条消息...

    发送win10消息通知的例子

    4. **XML定义Toast通知**: Toast通知的格式和内容是通过XML文件定义的。在这个例子中,可能有一个XML文件(如`naughter.css`),用于描述通知的布局、标题、文本、图标等元素。开发者可以根据需求自定义XML内容来...

    WinToast:WinToast是一个用C ++编写的轻量级库,它完全集成了Windows 8和Windows 10的现代Toast通知。Toast通知使您的应用可以通知用户应了解的相关信息和及时事件并对其采取行动。在您的应用程序内部,例如新的即时消息,新的好友请求,突发新闻或日历事件

    WinToast库是专门为Windows平台开发的应用程序提供现代Toast通知功能的C++库。这个轻量级的库使得开发者能够轻松地在Windows 8和Windows 10系统上集成通知功能,以便向用户传达重要的信息和实时事件。这些通知通常会...

    C# Winform 类似Android Toast消息功能

    1. **设计控件**:首先,创建一个新的窗体或控件,作为我们的Toast通知。这个控件应该包含文本显示区域、背景颜色、透明度设置以及动画效果(如淡入淡出)。 2. **定位和布局**:确定Toast通知在屏幕上的位置,通常...

    Android-屏蔽系统通知Toast无法显示的解决方案v2.0.0

    当用户在系统设置中屏蔽了所有应用的通知时,不仅通知栏中的通知会被隐藏,连同依赖于系统通知机制的Toast也会受到影响,因为Toast在某种程度上是基于通知实现的。 针对这个问题,我们可以尝试以下几种解决方案: ...

    自定义Toast,设置Toast显示位置,自定义Toast的复杂布局

    在Android开发中,Toast是一种轻量级的通知方式,它能够在屏幕中央短暂地显示一行文本信息。然而,系统默认的Toast功能有限,仅提供简单的文本显示和预设的显示位置。当我们需要更复杂的交互或者定制化设计时,就...

    自定义Toast解决Android关闭通知不显示

    最近项目中出现一个问题,就是有的手机在关闭系统通知,结果项目中使用的原生Toast在有的手机上竟然不显示了,然后就去查系统源码,发现原来原生的Toast是基于NotificaitionManagerService实现的,难怪有些手机不...

Global site tag (gtag.js) - Google Analytics