Android之Toast通知的几种自定义用法

简介: Toast在手机屏幕上向用户显示一条信息,一段时间后信息会自动消失。1.默认用法[html] view plain copy print?Toast.makeText(getApplicationContext(), "默认Toast样式",Toast.

Toast在手机屏幕上向用户显示一条信息,一段时间后信息会自动消失。

1.默认用法

[html]  view plain  copy
 print ?
  1. Toast.makeText(getApplicationContext(), "默认Toast样式",Toast.LENGTH_SHORT).show();  

2.Fragment中的用法

[html]  view plain  copy
 print ?
  1. Toast.makeText(getActivity(),"网络连接错误,请检察网络设置", Toast.LENGTH_LONG).show();  

3.自定义显示位置效果

[html]  view plain  copy
 print ?
  1. toast = Toast.makeText(getApplicationContext(), "自定义位置Toast", Toast.LENGTH_LONG);  
  2. toast.setGravity(Gravity.CENTER, 0, 0);  
  3. toast.show();  

4.带图片效果

[html]  view plain  copy
 print ?
  1. toast = Toast.makeText(getApplicationContext(), "带图片的Toast", Toast.LENGTH_LONG);  
  2. toast.setGravity(Gravity.CENTER, 0, 0);  
  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();  

5.完全自定义效果

[html]  view plain  copy
 print ?
  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, 12, 40);  
  11. toast.setDuration(Toast.LENGTH_LONG);  
  12. toast.setView(layout);  
  13. toast.show();  

6.其他线程

Main.java打码
[html]  view plain  copy
 print ?
  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.     @Override  
  43.     public void onClick(View v) {  
  44.         Toast toast = null;  
  45.         switch (v.getId()) {  
  46.         case R.id.btnSimpleToast:  
  47.             Toast.makeText(getApplicationContext(), "默认Toast样式",Toast.LENGTH_SHORT).show();  
  48.             break;  
  49.         case R.id.btnSimpleToastWithCustomPosition:  
  50.             toast = Toast.makeText(getApplicationContext(), "自定义位置Toast",Toast.LENGTH_LONG);  
  51.             toast.setGravity(Gravity.CENTER, 0, 0);  
  52.             toast.show();  
  53.             break;  
  54.         case R.id.btnSimpleToastWithImage:  
  55.             toast = Toast.makeText(getApplicationContext(), "带图片的Toast",Toast.LENGTH_LONG);  
  56.             toast.setGravity(Gravity.CENTER, 0, 0);  
  57.             LinearLayout toastView = (LinearLayout) toast.getView();  
  58.             ImageView imageCodeProject = new ImageView(getApplicationContext());  
  59.             imageCodeProject.setImageResource(R.drawable.icon);  
  60.             toastView.addView(imageCodeProject, 0);  
  61.             toast.show();  
  62.             break;  
  63.         case R.id.btnCustomToast:  
  64.             LayoutInflater inflater = getLayoutInflater();  
  65.             View layout = inflater.inflate(R.layout.custom,(ViewGroup) findViewById(R.id.llToast));  
  66.             ImageView image = (ImageView) layout.findViewById(R.id.tvImageToast);  
  67.             image.setImageResource(R.drawable.icon);  
  68.             TextView title = (TextView) layout.findViewById(R.id.tvTitleToast);  
  69.             title.setText("Attention");  
  70.             TextView text = (TextView) layout.findViewById(R.id.tvTextToast);  
  71.             text.setText("完全自定义Toast");  
  72.             toast = new Toast(getApplicationContext());  
  73.             toast.setGravity(Gravity.RIGHT | Gravity.TOP, 12, 40);  
  74.             toast.setDuration(Toast.LENGTH_LONG);  
  75.             toast.setView(layout);  
  76.             toast.show();  
  77.             break;  
  78.         case R.id.btnRunToastFromOtherThread:  
  79.             new Thread(new Runnable() {  
  80.                 public void run() {  
  81.                     showToast();  
  82.                 }  
  83.             }).start();  
  84.             break;  
  85.         }  
  86.     }  
  87. }  
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="5dip" >  
  8.   
  9.     <Button  
  10.         android:id="@+id/btnSimpleToast"  
  11.         android:layout_width="fill_parent"  
  12.         android:layout_height="wrap_content"  
  13.         android:text="默认" >  
  14.     </Button>  
  15.   
  16.     <Button  
  17.         android:id="@+id/btnSimpleToastWithCustomPosition"  
  18.         android:layout_width="fill_parent"  
  19.         android:layout_height="wrap_content"  
  20.         android:text="自定义显示位置" >  
  21.     </Button>  
  22.   
  23.     <Button  
  24.         android:id="@+id/btnSimpleToastWithImage"  
  25.         android:layout_width="fill_parent"  
  26.         android:layout_height="wrap_content"  
  27.         android:text="带图片" >  
  28.     </Button>  
  29.   
  30.     <Button  
  31.         android:id="@+id/btnCustomToast"  
  32.         android:layout_width="fill_parent"  
  33.         android:layout_height="wrap_content"  
  34.         android:text="完全自定义" >  
  35.     </Button>  
  36.   
  37.     <Button  
  38.         android:id="@+id/btnRunToastFromOtherThread"  
  39.         android:layout_width="fill_parent"  
  40.         android:layout_height="wrap_content"  
  41.         android:text="其他线程" >  
  42.     </Button>  
  43.   
  44. </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/llToast"  
  4.     android:layout_width="wrap_content"  
  5.     android:layout_height="wrap_content"  
  6.     android:background="#ffffffff"  
  7.     android:orientation="vertical" >  
  8.   
  9.     <TextView  
  10.         android:id="@+id/tvTitleToast"  
  11.         android:layout_width="fill_parent"  
  12.         android:layout_height="wrap_content"  
  13.         android:layout_margin="1dip"  
  14.         android:background="#bb000000"  
  15.         android:gravity="center"  
  16.         android:textColor="#ffffffff" />  
  17.   
  18.     <LinearLayout  
  19.         android:id="@+id/llToastContent"  
  20.         android:layout_width="wrap_content"  
  21.         android:layout_height="wrap_content"  
  22.         android:layout_marginBottom="1dip"  
  23.         android:layout_marginLeft="1dip"  
  24.         android:layout_marginRight="1dip"  
  25.         android:background="#44000000"  
  26.         android:orientation="vertical"  
  27.         android:padding="15dip" >  
  28.   
  29.         <ImageView  
  30.             android:id="@+id/tvImageToast"  
  31.             android:layout_width="wrap_content"  
  32.             android:layout_height="wrap_content"  
  33.             android:layout_gravity="center" />  
  34.   
  35.         <TextView  
  36.             android:id="@+id/tvTextToast"  
  37.             android:layout_width="wrap_content"  
  38.             android:layout_height="wrap_content"  
  39.             android:gravity="center"  
  40.             android:paddingLeft="10dip"  
  41.             android:paddingRight="10dip"  
  42.             android:textColor="#ff000000" />  
  43.     </LinearLayout>  
  44.   
  45. </LinearLayout>   1 /**
     2  *另一种封装方式
     3  *
     4  */
     5  import android.content.Context;
     6  import android.view.Gravity;
     7  import android.view.LayoutInflater;
     8  import android.view.View;
     9  import android.view.ViewGroup;
    10  import android.widget.ImageView;
    11  import android.widget.LinearLayout;
    12  import android.widget.TextView;
    13  import android.widget.Toast;
    14 
    15  import com.letv.recorder.R;
    16 
    17  /**
    18   * Created by juyanming on 16/7/4.
    19    */
    20  public  class ToastUtils {
    21 
    22      /**
    23       * 描述:系统Toast
    24       *  @param  context 应用上下文
    25       *  @param  str 消息框提示的文本内容
    26        */
    27      public  void t_default(Context context,String str){
    28         Toast.makeText(context, str,
    29                 Toast.LENGTH_SHORT).show();
    30     }
    31 
    32      /**
    33       * 描述:自定义图片Toast
    34       *  @param  context 应用上下文
    35       *  @param  str   消息框提示的文本内容
    36       *  @param  imgId 图片id
    37        */
    38      public  void t_img(Context context,String str, int imgId){
    39         Toast toast = Toast.makeText(context,
    40                 "带图片的Toast", Toast.LENGTH_LONG);
    41         toast.setGravity(Gravity.CENTER, 0, 0);
    42         LinearLayout toastView = (LinearLayout) toast.getView();
    43         ImageView imageCodeProject =  new ImageView(context);
    44         imageCodeProject.setImageResource(imgId);
    45         toastView.addView(imageCodeProject, 0);
    46         toast.show();
    47     }
    48 
    49      /**
    50       *
    51       *  @param  context 应用上下文
    52       *  @param  str 消息框提示的文本内容
    53       *  @param  custom    布局
    54       *  @param  llToast  viewId
    55       *  @param  icon 图片id
    56       *  @param  tvImageToast  视图id
    57       *  @param  tvTitleToast
    58       *  @param  tvTextToast
    59        */
    60      public  void t_complete(Context context,String str, int custom, int llToast, int icon, int tvImageToast, int tvTitleToast, int tvTextToast){
    61         LayoutInflater inflater = LayoutInflater.from(context);
    62         View layout = inflater.inflate(custom,
    63                 (ViewGroup) findViewById(R.id.llToast));
    64         ImageView image = (ImageView) layout
    65                 .findViewById(tvImageToast);
    66         image.setImageResource(icon);
    67         TextView title = (TextView) layout.findViewById(tvTitleToast);
    68         title.setText("Attention");
    69         TextView text = (TextView) layout.findViewById(tvTextToast);
    70         text.setText("完全自定义Toast");
    71         Toast toast =  new Toast(context);
    72         toast.setGravity(Gravity.RIGHT | Gravity.TOP, 12, 40);
    73         toast.setDuration(Toast.LENGTH_LONG);
    74         toast.setView(layout);
    75         toast.show();
    76     }
    77 }
若转载请注明出处!若有疑问,请回复交流!
目录
相关文章
|
1月前
|
Android开发 开发者
安卓应用开发中的自定义视图
【9月更文挑战第37天】在安卓开发的海洋中,自定义视图犹如一座座小岛,等待着勇敢的探索者去发现其独特之处。本文将带领你踏上这段旅程,从浅滩走向深海,逐步揭开自定义视图的神秘面纱。
33 3
|
26天前
|
数据可视化 Android开发 开发者
安卓应用开发中的自定义View组件
【10月更文挑战第5天】在安卓应用开发中,自定义View组件是提升用户交互体验的利器。本篇将深入探讨如何从零开始创建自定义View,包括设计理念、实现步骤以及性能优化技巧,帮助开发者打造流畅且富有创意的用户界面。
59 0
|
1天前
|
搜索推荐 前端开发 Android开发
安卓应用开发中的自定义视图实现
【10月更文挑战第30天】在安卓开发的海洋中,自定义视图是那抹不可或缺的亮色,它为应用界面的个性化和交互体验的提升提供了无限可能。本文将深入探讨如何在安卓平台创建自定义视图,并展示如何通过代码实现这一过程。我们将从基础出发,逐步引导你理解自定义视图的核心概念,然后通过一个实际的代码示例,详细讲解如何将理论应用于实践,最终实现一个美观且具有良好用户体验的自定义控件。无论你是想提高自己的开发技能,还是仅仅出于对安卓开发的兴趣,这篇文章都将为你提供价值。
|
3天前
|
Android开发 开发者 UED
安卓开发中自定义View的实现与性能优化
【10月更文挑战第28天】在安卓开发领域,自定义View是提升应用界面独特性和用户体验的重要手段。本文将深入探讨如何高效地创建和管理自定义View,以及如何通过代码和性能调优来确保流畅的交互体验。我们将一起学习自定义View的生命周期、绘图基础和事件处理,进而探索内存和布局优化技巧,最终实现既美观又高效的安卓界面。
14 5
|
26天前
|
XML 前端开发 Java
安卓应用开发中的自定义View组件
【10月更文挑战第5天】自定义View是安卓应用开发的一块基石,它为开发者提供了无限的可能。通过掌握其原理和实现方法,可以创造出既美观又实用的用户界面。本文将引导你了解自定义View的创建过程,包括绘制技巧、事件处理以及性能优化等关键步骤。
|
2月前
|
Android开发 开发者
安卓开发中的自定义视图:从入门到精通
【9月更文挑战第19天】在安卓开发的广阔天地中,自定义视图是一块充满魔力的土地。它不仅仅是代码的堆砌,更是艺术与科技的完美结合。通过掌握自定义视图,开发者能够打破常规,创造出独一无二的用户界面。本文将带你走进自定义视图的世界,从基础概念到实战应用,一步步展示如何用代码绘出心中的蓝图。无论你是初学者还是有经验的开发者,这篇文章都将为你打开一扇通往创意和效率的大门。让我们一起探索自定义视图的秘密,将你的应用打造成一件艺术品吧!
58 10
|
2月前
|
编解码 前端开发 Android开发
Android经典实战之TextureView原理和高级用法
本文介绍了 `TextureView` 的原理和特点,包括其硬件加速渲染的优势及与其他视图叠加使用的灵活性,并提供了视频播放和自定义绘制的示例代码。通过合理管理生命周期和资源,`TextureView` 可实现高效流畅的图形和视频渲染。
189 12
|
2月前
|
XML 编解码 Android开发
安卓开发中的自定义视图控件
【9月更文挑战第14天】在安卓开发中,自定义视图控件是一种高级技巧,它可以让开发者根据项目需求创建出独特的用户界面元素。本文将通过一个简单示例,引导你了解如何在安卓项目中实现自定义视图控件,包括创建自定义控件类、处理绘制逻辑以及响应用户交互。无论你是初学者还是有经验的开发者,这篇文章都会为你提供有价值的见解和技巧。
42 3
|
2月前
|
前端开发 Android开发 开发者
安卓应用开发中的自定义视图基础
【9月更文挑战第13天】在安卓开发的广阔天地中,自定义视图是一块神奇的画布,它允许开发者将想象力转化为用户界面的创新元素。本文将带你一探究竟,了解如何从零开始构建自定义视图,包括绘图基础、触摸事件处理,以及性能优化的实用技巧。无论你是想提升应用的视觉吸引力,还是追求更流畅的交互体验,这里都有你需要的金钥匙。
|
2月前
|
缓存 搜索推荐 Android开发
安卓应用开发中的自定义View组件实践
【9月更文挑战第10天】在安卓开发领域,自定义View是提升用户体验和实现界面个性化的重要手段。本文将通过一个实际案例,展示如何在安卓项目中创建和使用自定义View组件,包括设计思路、实现步骤以及可能遇到的问题和解决方案。文章不仅提供了代码示例,还深入探讨了自定义View的性能优化技巧,旨在帮助开发者更好地掌握这一技能。