- 浏览: 73592 次
- 性别:
- 来自: 广州
最新评论
-
鱼在陆地上跑:
yanjunhui2011 写道http://download ...
Android自适应屏幕方向、大小和分辨率 -
yanjunhui2011:
http://download.csdn.net/detail ...
Android自适应屏幕方向、大小和分辨率 -
鱼在陆地上跑:
sydydream 写道<supports-screen ...
Android自适应屏幕方向、大小和分辨率 -
sydydream:
<supports-screens and ...
Android自适应屏幕方向、大小和分辨率 -
lenomon:
这里有篇实现无下划线的,Android使用TextView实现 ...
通过SpannableString来设置超链接、颜色、字体等属性(转)
转自:http://www.cnblogs.com/salam/archive/2011/06/28/1873654.html
Toast用于向用户显示一些帮助/提示。下面我做了5中效果,来说明Toast的强大,定义一个属于你自己的Toast。
1.默认效果
Toast.makeText(getApplicationContext(), "默认Toast样式",Toast.LENGTH_SHORT).show();
2.自定义显示位置效果
toast = Toast.makeText(getApplicationContext(),"自定义位置Toast",Toast.LENGTH_LONG); toast.setGravity(Gravity.CENTER, 0, 0); toast.show();
3.带图片效果
toast = Toast.makeText(getApplicationContext(),"带图片的Toast",Toast.LENGTH_LONG); toast.setGravity(Gravity.CENTER, 0, 0); LinearLayout toastView = (LinearLayout) toast.getView(); ImageView imageCodeProject = new ImageView(getApplicationContext()); imageCodeProject.setImageResource(R.drawable.icon); toastView.addView(imageCodeProject, 0); toast.show();
4.完全自定义效果
LayoutInflater inflater = getLayoutInflater(); View layout = inflater.inflate(R.layout.custom,(ViewGroup) findViewById(R.id.llToast)); ImageView image = (ImageView) layout.findViewById(R.id.tvImageToast); image.setImageResource(R.drawable.icon); TextView title = (TextView) layout.findViewById(R.id.tvTitleToast); title.setText("Attention"); TextView text = (TextView) layout.findViewById(R.id.tvTextToast); text.setText("完全自定义Toast"); toast = new Toast(getApplicationContext()); toast.setGravity(Gravity.RIGHT | Gravity.TOP, 12, 40); toast.setDuration(Toast.LENGTH_LONG); toast.setView(layout); toast.show();
5.其他线程
new Thread(new Runnable() { public void run() { showToast(); } }).start();
完整代码
①Main.java
package com.wjq.toast; import android.app.Activity; import android.os.Bundle; import android.os.Handler; import android.view.Gravity; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.view.View.OnClickListener; import android.widget.ImageView; import android.widget.LinearLayout; import android.widget.TextView; import android.widget.Toast; public class Main extends Activity implements OnClickListener { Handler handler = new Handler(); @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); findViewById(R.id.btnSimpleToast).setOnClickListener(this); findViewById(R.id.btnSimpleToastWithCustomPosition).setOnClickListener(this); findViewById(R.id.btnSimpleToastWithImage).setOnClickListener(this); findViewById(R.id.btnCustomToast).setOnClickListener(this); findViewById(R.id.btnRunToastFromOtherThread).setOnClickListener(this); } public void showToast() { handler.post(new Runnable() { @Override public void run() { Toast.makeText(getApplicationContext(), "我来自其他线程!",Toast.LENGTH_SHORT).show(); } }); } @Override public void onClick(View v) { Toast toast = null; switch (v.getId()) { case R.id.btnSimpleToast: Toast.makeText(getApplicationContext(), "默认Toast样式", Toast.LENGTH_SHORT).show(); break; case R.id.btnSimpleToastWithCustomPosition: toast = Toast.makeText(getApplicationContext(),"自定义位置Toast", Toast.LENGTH_LONG); toast.setGravity(Gravity.CENTER, 0, 0); toast.show(); break; case R.id.btnSimpleToastWithImage: toast = Toast.makeText(getApplicationContext(),"带图片的Toast", Toast.LENGTH_LONG); toast.setGravity(Gravity.CENTER, 0, 0); LinearLayout toastView = (LinearLayout) toast.getView(); ImageView imageCodeProject = new ImageView(getApplicationContext()); imageCodeProject.setImageResource(R.drawable.icon); toastView.addView(imageCodeProject, 0); toast.show(); break; case R.id.btnCustomToast: LayoutInflater inflater = getLayoutInflater(); View layout = inflater.inflate(R.layout.custom,(ViewGroup) findViewById(R.id.llToast)); ImageView image = (ImageView) layout.findViewById(R.id.tvImageToast); image.setImageResource(R.drawable.icon); TextView title = (TextView) layout.findViewById(R.id.tvTitleToast); title.setText("Attention"); TextView text = (TextView) layout.findViewById(R.id.tvTextToast); text.setText("完全自定义Toast"); toast = new Toast(getApplicationContext()); toast.setGravity(Gravity.RIGHT | Gravity.TOP, 12, 40); toast.setDuration(Toast.LENGTH_LONG); toast.setView(layout); toast.show(); break; case R.id.btnRunToastFromOtherThread: new Thread(new Runnable() { public void run() { showToast(); } }).start(); break; } } }
②main.xml
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" android:padding="5dip" android:gravity="center"> <Button android:layout_height="wrap_content" android:layout_width="fill_parent" android:id="@+id/btnSimpleToast" android:text="默认" /> <Button android:layout_height="wrap_content" android:layout_width="fill_parent" android:text="自定义显示位置" android:id="@+id/btnSimpleToastWithCustomPosition" /> <Button android:layout_height="wrap_content" android:layout_width="fill_parent" android:id="@+id/btnSimpleToastWithImage" android:text="带图片" /> <Button android:layout_height="wrap_content" android:layout_width="fill_parent" android:text="完全自定义" android:id="@+id/btnCustomToast" /> <Button android:layout_height="wrap_content" android:layout_width="fill_parent" android:text="其他线程" android:id="@+id/btnRunToastFromOtherThread" /> </LinearLayout>
③custom.xml
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_height="wrap_content" android:layout_width="wrap_content" android:background="#ffffffff" android:orientation="vertical" android:id="@+id/llToast" > <TextView android:layout_height="wrap_content" android:layout_margin="1dip" android:textColor="#ffffffff" android:layout_width="fill_parent" android:gravity="center" android:background="#bb000000" android:id="@+id/tvTitleToast" /> <LinearLayout android:layout_height="wrap_content" android:orientation="vertical" android:id="@+id/llToastContent" android:layout_marginLeft="1dip" android:layout_marginRight="1dip" android:layout_marginBottom="1dip" android:layout_width="wrap_content" android:padding="15dip" android:background="#44000000" > <ImageView android:layout_height="wrap_content" android:layout_gravity="center" android:layout_width="wrap_content" android:id="@+id/tvImageToast" /> <TextView android:layout_height="wrap_content" android:paddingRight="10dip" android:paddingLeft="10dip" android:layout_width="wrap_content" android:gravity="center" android:textColor="#ff000000" android:id="@+id/tvTextToast" /> </LinearLayout> </LinearLayout>
- CustomToast.rar (11.4 KB)
- 下载次数: 8
发表评论
-
Activity的启动与通信
2012-02-01 17:14 1507Activity是Android组件中最基本也是最常见的组件, ... -
【转】android通过USB使用真机调试程序
2012-02-01 11:04 1122转自:http://www.cnblogs.com/azai/ ... -
【整理】通过ViewPager实现Launcher中的屏幕切换效果
2012-01-30 17:06 2687整理自:http://www.cnmsdn.com/html/ ... -
【转】实现自定义布局的Notification
2012-01-30 15:57 1567转自:http://blog.csdn.net/chenlon ... -
Eclipse 语法自动提示
2012-01-30 09:39 13671. 从Window -> preferences -& ... -
【转】Notification 详解
2012-01-29 16:08 1218转自:http://www.microdu.com/threa ... -
【转】Toast简易消息提示框的使用
2012-01-29 10:46 1249转自:http://www.2cto.com/kf ... -
实现Launcher的抽屉效果
2012-01-19 10:18 1216android 的 launcher 有一个抽屉效果,可以有拉 ... -
【整理】Android animation - 基础
2012-01-18 11:30 886整理自:http://blog.csdn.net/lzx_bu ... -
【转】编写高效的android代码
2012-01-17 10:00 897转自:http://www.2cto.com/kf/20111 ... -
【转】Android 分页控件制成底部菜单
2012-01-16 17:47 1901转自:http://blog.csdn.net/knowhea ... -
【转】android使用分页标签
2012-01-16 15:46 1242转自:http://marshal.easymorse.com ... -
【转】Eclipse调试常用技巧
2012-01-12 11:03 788转:http://chenhaodejia.iteye ... -
【转】Content Provider 基础 之URI
2012-01-12 10:42 1169转自:http://chenhaodejia.it ... -
【转】ImageButton点击背景切换事件
2012-01-12 10:31 2201转自:http://chenhaodejia.iteye.co ... -
【转】ContentProvider基础
2012-01-12 09:26 917转自:http://wq294948004.iteye.com ... -
使用bindService启动服务
2012-01-10 10:32 4932一般情况下我们使用startService(I ... -
Android SDCard操作(文件读写,容量计算)
2011-04-08 00:55 743Android SDCard操作(文件读写,容量计算) ... -
【转】Service创建有两种方法: startService或者bindService
2011-06-18 15:18 1142服务不能自己运行,需要通过调用Context.startSer ... -
【转】有按钮的ListView(使用自定义Adapter的方法)
2012-01-06 15:27 1677转自:http://www.cnblogs.com/allin ...
相关推荐
### Android Toast 大全(五种情形) #### 一、概览 在Android开发中,`Toast`是一种轻量级的提示方式,主要用于快速显示简短的信息,如操作结果、临时提示等。它不会阻塞UI线程,也不需要用户进行任何交互即可...
本文档详细介绍了Toast的五种不同使用情形,包括基础用法、自定义位置、添加图片、自定义布局以及通过新线程显示Toast。 1. Toast基础用法 Toast的基础用法非常简单,主要涉及到两个方法:makeText()和show()。...
下面我们将详细讲解如何实现标题中提到的五种`Toast`情形。 1. **默认效果**: 默认的`Toast`样式是系统预设的,只需调用`makeText()`方法并传入上下文、显示文本和持续时间即可。如: ```java Toast.makeText...
标题“toast五种效果”暗示我们将探讨如何在Android应用中实现不同类型的Toast,包括默认样式、带有图片以及自定义样式的Toast。下面将详细介绍这五种效果。 1. **默认样式Toast** 默认的Toast样式是系统预设的,...
在给定的“五种不同的Toast”主题中,我们可以探讨不同类型的`Toast`展示方式及其用法。 1. **基本的Toast** 最基础的`Toast`创建方法是通过`Toast.makeText()`函数。你需要传入上下文(Context)、显示的消息...
Android Toast 大全 (五种形式) 建立属于自己的 Toast
本文将详细介绍五种不同的Toast效果,帮助开发者更好地理解和运用这一功能。 1. **基本的Toast效果** 基本的Toast效果是最常见的,用于显示简单的文本信息。创建一个基本的Toast,可以通过`Toast.makeText()`方法...
标题提到的"五种不同效果的`Toast`"可能指的是对`Toast`进行的定制化设计,以实现不同的视觉效果或功能增强。下面将详细探讨`Toast`的基本用法以及如何创建具有不同效果的`Toast`。 1. **`Toast`的基本使用** - `...
在Android开发中,Toast是一种非常常见的轻量级提示方式,用于向用户显示短暂的信息,而不会中断当前操作。本文将详细介绍`Toast`的几种常见用法,包括如何创建基本的`Toast`、自定义`Toast`的位置以及创建带有图片...
### Toast五种特效详解 #### 一、简介 在Android应用开发过程中,为了提升用户体验,开发者经常需要在合适的时候向用户展示简短的信息提示。这时,`Toast`作为一种轻量级的消息提示方式就显得尤为重要了。不同于...
下面将详细介绍五种不同的自定义`Toast`效果及其实现方法。 1. **改变文字颜色和字体** 要更改`Toast`中的文字颜色和字体,可以在创建`Toast`时使用自定义的`TextView`。首先,创建一个XML布局文件,例如`toast_...
在Android开发中,Toast是一种轻量级的通知方式,它能够在屏幕中央短暂地显示一行文本信息。然而,系统默认的Toast功能有限,仅提供简单的文本显示和预设的显示位置。当我们需要更复杂的交互或者定制化设计时,就...
在Android开发中,Toast是一种轻量级的通知方式,它能够在屏幕中央或底部显示短暂的信息,然后自动消失。然而,原始的Toast有时无法满足开发者对于样式、持续时间或交互的需求,因此,自定义Toast就显得尤为重要。...
这个“Android应用源码之五种效果的Toast.zip”文件包含了一个示例项目,展示了如何自定义`Toast`以实现不同的视觉效果。下面我们将详细探讨`Toast`的基本使用和如何进行自定义。 1. **`Toast`的基本用法** - 创建...
在Android开发中,`Toast`是一种轻量级的反馈机制,用于向用户显示短暂的通知信息。它不会阻断用户与应用程序的交互,因为`Toast`会自动在一段时间后消失。在本篇中,我们将深入探讨`Toast`的基本使用,对应于2.1...
在Android开发中,Toast是一种轻量级的通知方式,它用于显示短暂的信息,通常用来提示用户某个操作的结果。然而,系统默认的Toast有时无法满足开发者的需求,例如样式、位置或者交互等方面的定制。在这种情况下,...
`Toast`的源码分析对于理解和定制自己的消息提示功能至关重要。本篇文章将深入探讨`Toast`的工作原理、源码解析以及相关知识点。 首先,`Toast`的基本用法是创建一个`Toast`对象,然后调用`makeText()`方法,传入上...
在Android应用开发中,`Dialog`和`Toast`是两种常用的用户交互元素,它们用于向用户提供临时信息或者进行简单的交互。本示例大全深入探讨了这两种组件的使用方法及其自定义技巧。 首先,`Dialog`是Android中一个弹...