Android消息提示框Toast

Toast是Android中一种简易的消息提示框。和Dialog不一样的是,Toast是没有焦点的,toast提示框不能被用户点击,而且Toast显示的时间有限,toast会根据用户设置的显示时间后自动消失。

创建Toast的方法总共有2种:

1.Toast.makeText(Context context, (CharSequence text)/( int resId), int duration)

参数:context是指上下文对象,通常是当前的Activity,text是指自己写的消息内容,resId指显示内容引用Resource的那条数据,duration指Toast的显示时间,Toast默认有LENGTH_SHORT和LENGTH_LONG两常量,分别表示时间长和短,也可以自定义时间,如:5000表示显示5秒。用此方法获得Toast对象之后调用.show()方法即可显示消息。

2.自定义Toast,通过Toast toast = new Toast(Context context)获得Toast对象,调用.show()方法即可显示消息。

toast.setDuration(duration)设置显示时间,

toast.setGravity(gravity, xOffset, yOffset)设置显示位置,三个参数分别表示(起点位置,水平位移,垂直位移),

toast.setMargin(float horizontalMargin, float verticalMargin)以横向和纵向的百分比设置显示位置,参数均为float类型(水平位移正右负左,竖直位移正上负下),

toast.setText(text)设置消息内容,

toast.setView(view)设置Toast显示的视图组件。

实例:

main.xml

[html] view plain copy

print?

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:gravity="center"
  6. android:orientation="vertical"
  7. android:padding="10dp" >
  8. <Button
  9. android:id="@+id/simpleToast"
  10. android:layout_width="fill_parent"
  11. android:layout_height="wrap_content"
  12. android:text="默认" >
  13. </Button>
  14. <Button
  15. android:id="@+id/simpleToastWithCustomPosition"
  16. android:layout_width="fill_parent"
  17. android:layout_height="wrap_content"
  18. android:text="自定义显示位置" >
  19. </Button>
  20. <Button
  21. android:id="@+id/imageToast"
  22. android:layout_width="fill_parent"
  23. android:layout_height="wrap_content"
  24. android:text="带图片" >
  25. </Button>
  26. <Button
  27. android:id="@+id/customToast"
  28. android:layout_width="fill_parent"
  29. android:layout_height="wrap_content"
  30. android:text="完全自定义" >
  31. </Button>
  32. <Button
  33. android:id="@+id/runToastFromOtherThread"
  34. android:layout_width="fill_parent"
  35. android:layout_height="wrap_content"
  36. android:text="其他线程" >
  37. </Button>
  38. </LinearLayout>

custom.xml

[html] view plain copy

print?

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:id="@+id/toastLayout"
  4. android:layout_width="wrap_content"
  5. android:layout_height="wrap_content"
  6. android:orientation="vertical" >
  7. <TextView
  8. android:layout_width="match_parent"
  9. android:layout_height="wrap_content"
  10. android:layout_margin="1dp"
  11. android:background="#333399"
  12. android:gravity="center"
  13. android:text="ToastTitle"
  14. android:textColor="#ffffff" />
  15. <LinearLayout
  16. android:id="@+id/toastContent"
  17. android:layout_width="wrap_content"
  18. android:layout_height="wrap_content"
  19. android:layout_marginBottom="1dp"
  20. android:layout_marginLeft="1dp"
  21. android:layout_marginRight="1dp"
  22. android:background="#3366ff"
  23. android:orientation="vertical"
  24. android:padding="15dp" >
  25. <ImageView
  26. android:id="@+id/customImageToast"
  27. android:layout_width="wrap_content"
  28. android:layout_height="wrap_content"
  29. android:layout_gravity="center" />
  30. <TextView
  31. android:id="@+id/customTextToast"
  32. android:layout_width="wrap_content"
  33. android:layout_height="wrap_content"
  34. android:gravity="center"
  35. android:paddingLeft="10dp"
  36. android:paddingRight="10dp" />
  37. </LinearLayout>
  38. </LinearLayout>

MainActivity.java

[java] view plain copy

print?

  1. public class MainActivity extends Activity implements OnClickListener {
  2. private Button simpleToastBtn, simpleToastWithCustomPositionBtn,
  3. imageToastBtn, customToastBtn, runToastFromOtherThreadBtn;
  4. Handler handler = new Handler();
  5. @Override
  6. protected void onCreate(Bundle savedInstanceState) {
  7. super.onCreate(savedInstanceState);
  8. setContentView(R.layout.main);
  9. simpleToastBtn = (Button) findViewById(R.id.simpleToast);
  10. simpleToastWithCustomPositionBtn = (Button) findViewById(R.id.simpleToastWithCustomPosition);
  11. imageToastBtn = (Button) findViewById(R.id.imageToast);
  12. customToastBtn = (Button) findViewById(R.id.customToast);
  13. runToastFromOtherThreadBtn = (Button) findViewById(R.id.runToastFromOtherThread);
  14. simpleToastBtn.setOnClickListener(this);
  15. simpleToastWithCustomPositionBtn.setOnClickListener(this);
  16. imageToastBtn.setOnClickListener(this);
  17. customToastBtn.setOnClickListener(this);
  18. runToastFromOtherThreadBtn.setOnClickListener(this);
  19. }
  20. @Override
  21. public void onClick(View v) {
  22. Toast toast = null;
  23. switch (v.getId()) {
  24. case R.id.simpleToast:
  25. Toast.makeText(MainActivity.this, "默认Toast样式", Toast.LENGTH_LONG)
  26. .show();
  27. break;
  28. case R.id.simpleToastWithCustomPosition:
  29. toast = Toast.makeText(MainActivity.this, "自定义位置Toast",
  30. Toast.LENGTH_LONG);
  31. toast.setGravity(Gravity.CENTER, 0, 0);
  32. toast.show();
  33. break;
  34. case R.id.imageToast:
  35. toast = Toast.makeText(MainActivity.this, "带图片的Toast",
  36. Toast.LENGTH_LONG);
  37. LinearLayout layout = (LinearLayout) toast.getView();
  38. ImageView image = new ImageView(MainActivity.this);
  39. image.setImageResource(R.drawable.ic_launcher);
  40. layout.addView(image, 0);
  41. toast.show();
  42. break;
  43. case R.id.customToast:
  44. LayoutInflater inflater = getLayoutInflater();
  45. View view = inflater.inflate(R.layout.custom, null);
  46. ImageView customImage = (ImageView) view
  47. .findViewById(R.id.customImageToast);
  48. TextView customText = (TextView) view
  49. .findViewById(R.id.customTextToast);
  50. customImage.setImageResource(R.drawable.ic_launcher);
  51. customText.setText("完全自定义Toast");
  52. toast = new Toast(MainActivity.this);
  53. toast.setGravity(Gravity.RIGHT | Gravity.TOP, 30, 30);
  54. toast.setDuration(Toast.LENGTH_LONG);
  55. toast.setView(view);
  56. toast.show();
  57. break;
  58. case R.id.runToastFromOtherThread:
  59. new Thread(new Runnable() {
  60. public void run() {
  61. showToast();
  62. }
  63. }).start();
  64. break;
  65. }
  66. }
  67. public void showToast() {
  68. handler.post(new Runnable() {
  69. @Override
  70. public void run() {
  71. Toast.makeText(MainActivity.this, "我来自其他线程", Toast.LENGTH_LONG)
  72. .show();
  73. }
  74. });
  75. }
  76. }
时间: 2024-10-06 14:33:27

Android消息提示框Toast的相关文章

Android:Toast简单消息提示框

Toast是简单的消息提示框,一定时间后自动消失,没有焦点. 1.简单文本提示的方法: //参数1:当前的上下文环境.this或getApplicationContext() //参数2:提示内容 //参数3:显示的时间长短 Toast toast = Toast.makeText(this, "默认的toast", Toast.LENGTH_LONG); toast.show(); 2.自定义位置的方法: Toast toast = Toast.makeText(this, &quo

关于安卓开发通过Toast显示消息提示框

Toast用于在屏幕中显示一个提示信息栏,该消息栏没有任何控制按钮,并且不会获得焦点,经过一定时间后自动消失. 作用:用于显示一些快速提示信息 有两种方式可以显示提示信息框 一: 调用Toast类的make Text()方法创建一个名称为toast(自定义)的Toast对象 关键代码 1 Toast toast = Toast.makeText(this, "要显示的内容", Toast.LENGTH_LONG).show(); 二: 通过Toast类的构造方法创建一个消息提示框 关键

从仿QQ消息提示框来谈弹出式对话框

<代码里的世界> -UI篇 用文字札记描绘自己 android学习之路 转载请保留出处 by Qiao http://blog.csdn.net/qiaoidea/article/details/45896477 [导航] - 自定义弹出式对话框的简单用法 列举各种常见的对话框实现方案 1.概述 android原生控件向来以丑著称(新推出的Material Design当另说),因此几乎所有的应用都会特殊定制自己的UI样式.而其中弹出式提示框的定制尤为常见,本篇我们将从模仿QQ退出提示框来看一

UWP中的消息提示框(一)

不管什么平台,应用内难免会出现一些消息提示框,下面就来聊聊我在UWP里用到的消息提示框. 弹窗也可按是否需要用户操作促发一些逻辑进行分为两大类. 不需要用户干涉的一类: MessageDialog:操作简单,写起来也省事,想具体了解的请参考MSDN 先看看效果 PC上效果: mobile上效果: 再看看代码(●'?'●) 前台: <Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}" >

CSS+jQuery实现可关闭的智能定位的浮动消息提示框

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>CSS+jQuery实现可关闭的智能定位的

winform消息提示框

摘自:http://www.cnblogs.com/risen/archive/2008/01/15/1039751.html public partial class AlertForm : Form    {        /*         * 在类AlertForm定义的下方,         * 我们创建用于显示的字符串和其颜色的变量,         * 再定义几个Rectangle对象的变量用于放置标题.         * 提示内容以及可以拖动窗体的区域和关闭按钮的区域.   

自定义iOS 中推送消息 提示框

看到标题你可能会觉得奇怪 推送消息提示框不是系统自己弹出来的吗? 为什么还要自己自定义呢? 因为项目需求是这样的:最近需要做一个客服系统 包括店铺客服和官方客服两个模块 如果用户当前不在客服界面的时候 要求无论是在app前台 还是app退到后台 顶部都要弹出系统的那种消息提示框 这样的需求 我们就只能自定义一个在app内 弹出消息提示框 实现步骤如下: 1.我们自定义一个view 为 STPushView 推送消息的提示框view

Android 退出提示框 代码

转自:http://hi.baidu.com/ittdt/item/d932cf37f486f886c3cf29ea new AlertDialog.Builder(MainEngine.context)    //.setTitle("提示")    .setMessage("确定要退出游戏吗?")    .setPositiveButton("确定", new DialogInterface.OnClickListener() {     @

用PHP实现弹出消息提示框

方法一: echo "<script>alert('提示内容')</script>"; 方法二: echo '<script language="JavaScript">;alert("这是";location.href="http://www.jinyuanbao.cn";</script>;'; 里面的location.href="index.htm"表示