`

Toast大全(五种情形)建立属于你自己的Toast

 
阅读更多

Toast用于向用户显示一些帮助/提示。下面我做了5中效果,来说明Toast的强大,定义一个属于你自己的Toast。

 

1.默认效果

 

Java代码  收藏代码
  1. Toast.makeText(getApplicationContext(), "默认Toast样式",Toast.LENGTH_SHORT).show();  

2.自定义显示位置效果

Java代码  收藏代码
  1. toast = Toast.makeText(getApplicationContext(),"自定义位置Toast",Toast.LENGTH_LONG);  
  2. toast.setGravity(Gravity.CENTER, 00);  
  3. toast.show();  

 

3.带图片效果

Java代码  收藏代码
  1. toast = Toast.makeText(getApplicationContext(),"带图片的Toast",Toast.LENGTH_LONG);  
  2. toast.setGravity(Gravity.CENTER, 00);  
  3. LinearLayout toastView = (LinearLayout) toast.getView();  
  4. ImageView imageCodeProject = new ImageView(getApplicationContext());  
  5. imageCodeProject.setImageResource(R.drawable.icon);  
  6. toastView.addView(imageCodeProject, 0);  
  7. toast.show();  

 

4.完全自定义效果

Java代码  收藏代码
  1. LayoutInflater inflater = getLayoutInflater();  
  2. View layout = inflater.inflate(R.layout.custom,(ViewGroup) findViewById(R.id.llToast));  
  3. ImageView image = (ImageView) layout.findViewById(R.id.tvImageToast);  
  4. image.setImageResource(R.drawable.icon);  
  5. TextView title = (TextView) layout.findViewById(R.id.tvTitleToast);  
  6. title.setText("Attention");  
  7. TextView text = (TextView) layout.findViewById(R.id.tvTextToast);  
  8. text.setText("完全自定义Toast");  
  9. toast = new Toast(getApplicationContext());  
  10. toast.setGravity(Gravity.RIGHT | Gravity.TOP, 1240);  
  11. toast.setDuration(Toast.LENGTH_LONG);  
  12. toast.setView(layout);  
  13. toast.show();  

5.其他线程

Java代码  收藏代码
  1. new Thread(new Runnable() {  
  2.     public void run() {  
  3.        showToast();  
  4.     }  
  5. }).start();  

完整代码

①Main.java

Java代码  收藏代码
  1. package com.wjq.toast;  
  2.   
  3. import android.app.Activity;  
  4. import android.os.Bundle;  
  5. import android.os.Handler;  
  6. import android.view.Gravity;  
  7. import android.view.LayoutInflater;  
  8. import android.view.View;  
  9. import android.view.ViewGroup;  
  10. import android.view.View.OnClickListener;  
  11. import android.widget.ImageView;  
  12. import android.widget.LinearLayout;  
  13. import android.widget.TextView;  
  14. import android.widget.Toast;  
  15.   
  16. public class Main extends Activity implements OnClickListener {  
  17.     Handler handler = new Handler();  
  18.   
  19.     @Override  
  20.     public void onCreate(Bundle savedInstanceState) {  
  21.     super.onCreate(savedInstanceState);  
  22.     setContentView(R.layout.main);  
  23.   
  24.     findViewById(R.id.btnSimpleToast).setOnClickListener(this);  
  25.     findViewById(R.id.btnSimpleToastWithCustomPosition).setOnClickListener(this);  
  26.     findViewById(R.id.btnSimpleToastWithImage).setOnClickListener(this);  
  27.     findViewById(R.id.btnCustomToast).setOnClickListener(this);  
  28.     findViewById(R.id.btnRunToastFromOtherThread).setOnClickListener(this);  
  29.   
  30.     }  
  31.   
  32.     public void showToast() {  
  33.         handler.post(new Runnable() {  
  34.   
  35.             @Override  
  36.             public void run() {  
  37.                 Toast.makeText(getApplicationContext(), "我来自其他线程!",Toast.LENGTH_SHORT).show();  
  38.   
  39.             }  
  40.         });  
  41.     }  
  42.   
  43.     @Override  
  44.     public void onClick(View v) {  
  45.         Toast toast = null;  
  46.         switch (v.getId()) {  
  47.         case R.id.btnSimpleToast:  
  48.             Toast.makeText(getApplicationContext(), "默认Toast样式",  
  49.             Toast.LENGTH_SHORT).show();  
  50.             break;  
  51.         case R.id.btnSimpleToastWithCustomPosition:  
  52.             toast = Toast.makeText(getApplicationContext(),"自定义位置Toast", Toast.LENGTH_LONG);  
  53.             toast.setGravity(Gravity.CENTER, 00);  
  54.             toast.show();  
  55.             break;  
  56.         case R.id.btnSimpleToastWithImage:  
  57.             toast = Toast.makeText(getApplicationContext(),"带图片的Toast", Toast.LENGTH_LONG);  
  58.             toast.setGravity(Gravity.CENTER, 00);  
  59.             LinearLayout toastView = (LinearLayout) toast.getView();  
  60.             ImageView imageCodeProject = new ImageView(getApplicationContext());  
  61.             imageCodeProject.setImageResource(R.drawable.icon);  
  62.             toastView.addView(imageCodeProject, 0);  
  63.             toast.show();  
  64.             break;  
  65.         case R.id.btnCustomToast:  
  66.             LayoutInflater inflater = getLayoutInflater();  
  67.             View layout = inflater.inflate(R.layout.custom,(ViewGroup) findViewById(R.id.llToast));  
  68.             ImageView image = (ImageView) layout.findViewById(R.id.tvImageToast);  
  69.             image.setImageResource(R.drawable.icon);  
  70.             TextView title = (TextView) layout.findViewById(R.id.tvTitleToast);  
  71.             title.setText("Attention");  
  72.             TextView text = (TextView) layout.findViewById(R.id.tvTextToast);  
  73.             text.setText("完全自定义Toast");  
  74.             toast = new Toast(getApplicationContext());  
  75.             toast.setGravity(Gravity.RIGHT | Gravity.TOP, 1240);  
  76.             toast.setDuration(Toast.LENGTH_LONG);  
  77.             toast.setView(layout);  
  78.             toast.show();  
  79.             break;  
  80.         case R.id.btnRunToastFromOtherThread:  
  81.             new Thread(new Runnable() {  
  82.                 public void run() {  
  83.                     showToast();  
  84.                 }  
  85.             }).start();  
  86.             break;  
  87.   
  88.         }  
  89.   
  90.     }  
  91. }  

②main.xml

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

③custom.xml

Java代码  收藏代码
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout  xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:layout_height="wrap_content"  
  4.     android:layout_width="wrap_content"  
  5.     android:background="#ffffffff"  
  6.     android:orientation="vertical"  
  7.     android:id="@+id/llToast" >  
  8.   
  9.     <TextView  
  10.         android:layout_height="wrap_content"  
  11.         android:layout_margin="1dip"  
  12.         android:textColor="#ffffffff"  
  13.         android:layout_width="fill_parent"  
  14.         android:gravity="center"  
  15.         android:background="#bb000000"  
  16.         android:id="@+id/tvTitleToast" />  
  17.   
  18.     <LinearLayout  
  19.         android:layout_height="wrap_content"  
  20.         android:orientation="vertical"  
  21.         android:id="@+id/llToastContent"  
  22.         android:layout_marginLeft="1dip"  
  23.         android:layout_marginRight="1dip"  
  24.         android:layout_marginBottom="1dip"  
  25.         android:layout_width="wrap_content"  
  26.         android:padding="15dip"  
  27.         android:background="#44000000" >  
  28.         <ImageView  
  29.             android:layout_height="wrap_content"  
  30.             android:layout_gravity="center"  
  31.             android:layout_width="wrap_content"  
  32.             android:id="@+id/tvImageToast" />  
  33.         <TextView  
  34.             android:layout_height="wrap_content"  
  35.             android:paddingRight="10dip"  
  36.             android:paddingLeft="10dip"  
  37.             android:layout_width="wrap_content"  
  38.             android:gravity="center"  
  39.             android:textColor="#ff000000"  
  40.             android:id="@+id/tvTextToast" />  
  41.     </LinearLayout>  
  42.   
  43. </LinearLayout>  

分享到:
评论

相关推荐

    android Toast大全(五种情形)

    ### Android Toast 大全(五种情形) #### 一、概览 在Android开发中,`Toast`是一种轻量级的提示方式,主要用于快速显示简短的信息,如操作结果、临时提示等。它不会阻塞UI线程,也不需要用户进行任何交互即可...

    androidToast大全(五种情形)[归类].pdf

    本文档详细介绍了Toast的五种不同使用情形,包括基础用法、自定义位置、添加图片、自定义布局以及通过新线程显示Toast。 1. Toast基础用法 Toast的基础用法非常简单,主要涉及到两个方法:makeText()和show()。...

    android Toast大全(五种情形 && 字体颜色)

    下面我们将详细讲解如何实现标题中提到的五种`Toast`情形。 1. **默认效果**: 默认的`Toast`样式是系统预设的,只需调用`makeText()`方法并传入上下文、显示文本和持续时间即可。如: ```java Toast.makeText...

    toast五种效果

    标题“toast五种效果”暗示我们将探讨如何在Android应用中实现不同类型的Toast,包括默认样式、带有图片以及自定义样式的Toast。下面将详细介绍这五种效果。 1. **默认样式Toast** 默认的Toast样式是系统预设的,...

    五种不同的Toast

    在给定的“五种不同的Toast”主题中,我们可以探讨不同类型的`Toast`展示方式及其用法。 1. **基本的Toast** 最基础的`Toast`创建方法是通过`Toast.makeText()`函数。你需要传入上下文(Context)、显示的消息...

    Android Toast 大全

    Android Toast 大全 (五种形式) 建立属于自己的 Toast

    五种不同的Toast效果

    本文将详细介绍五种不同的Toast效果,帮助开发者更好地理解和运用这一功能。 1. **基本的Toast效果** 基本的Toast效果是最常见的,用于显示简单的文本信息。创建一个基本的Toast,可以通过`Toast.makeText()`方法...

    五种不同效果的Toast

    标题提到的"五种不同效果的`Toast`"可能指的是对`Toast`进行的定制化设计,以实现不同的视觉效果或功能增强。下面将详细探讨`Toast`的基本用法以及如何创建具有不同效果的`Toast`。 1. **`Toast`的基本使用** - `...

    toast几种用法

    在Android开发中,Toast是一种非常常见的轻量级提示方式,用于向用户显示短暂的信息,而不会中断当前操作。本文将详细介绍`Toast`的几种常见用法,包括如何创建基本的`Toast`、自定义`Toast`的位置以及创建带有图片...

    Toast五种特效

    ### Toast五种特效详解 #### 一、简介 在Android应用开发过程中,为了提升用户体验,开发者经常需要在合适的时候向用户展示简短的信息提示。这时,`Toast`作为一种轻量级的消息提示方式就显得尤为重要了。不同于...

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

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

    自定义Toast效果5种

    下面将详细介绍五种不同的自定义`Toast`效果及其实现方法。 1. **改变文字颜色和字体** 要更改`Toast`中的文字颜色和字体,可以在创建`Toast`时使用自定义的`TextView`。首先,创建一个XML布局文件,例如`toast_...

    自定义Toast及解决重复出现Toast的问题

    在Android开发中,Toast是一种轻量级的通知方式,它能够在屏幕中央或底部显示短暂的信息,然后自动消失。然而,原始的Toast有时无法满足开发者对于样式、持续时间或交互的需求,因此,自定义Toast就显得尤为重要。...

    Android应用源码之五种效果的Toast.zip

    这个“Android应用源码之五种效果的Toast.zip”文件包含了一个示例项目,展示了如何自定义`Toast`以实现不同的视觉效果。下面我们将详细探讨`Toast`的基本使用和如何进行自定义。 1. **`Toast`的基本用法** - 创建...

    Toast的基本使用代码

    在Android开发中,`Toast`是一种轻量级的反馈机制,用于向用户显示短暂的通知信息。它不会阻断用户与应用程序的交互,因为`Toast`会自动在一段时间后消失。在本篇中,我们将深入探讨`Toast`的基本使用,对应于2.1...

    自定义Application级别toast Demo

    通过运行这个Demo,你可以看到自定义Toast的实际效果,同时也可以根据自己的需求进行进一步的修改和扩展。 总之,自定义Application级别的Toast不仅可以提升应用的用户体验,还能统一整个应用的视觉风格。通过学习...

    Dialog&Toast示例大全

    在Android应用开发中,`Dialog`和`Toast`是两种常用的用户交互元素,它们用于向用户提供临时信息或者进行简单的交互。本示例大全深入探讨了这两种组件的使用方法及其自定义技巧。 首先,`Dialog`是Android中一个弹...

    五种Toast源码

    `Toast`的源码分析对于理解和定制自己的消息提示功能至关重要。本篇文章将深入探讨`Toast`的工作原理、源码解析以及相关知识点。 首先,`Toast`的基本用法是创建一个`Toast`对象,然后调用`makeText()`方法,传入上...

Global site tag (gtag.js) - Google Analytics