android 自定义Toast 吐司

1.默认的Toast显示
自定义Toast,有时候是需要我们自定义的,那么简单的默认的我这边就不做介绍了

2.自定义位置的Toast显示
显示的位置,可以根据自己的需要,设置不同的位置

Toast toast = Toast.makeText(getApplicationContext(), TOASTBTN_2,Toast.LENGTH_LONG);
toast.setGravity(Gravity.CENTER, 0, 0);
toast.show();

3.自定义带图片的Toast显示
这里写图片描述
实现代码如下:

Toast toast = Toast.makeText(getApplicationContext(), TOASTBTN_3,Toast.LENGTH_LONG);
toast.setGravity(Gravity.CENTER, 50, -100);
LinearLayout layout = (LinearLayout) toast.getView();
ImageView image = new ImageView(getApplicationContext());
image.setImageResource(R.drawable.wallpaper_tree_small);
layout.addView(image, 0);
toast.show();

4.完全自定义的Toast显示
这里写图片描述
实现代码:

LayoutInflater inflater = getLayoutInflater();
			View view = inflater.inflate(R.layout.userdefinedtoast,
					(ViewGroup) findViewById(R.id.toast_layout));
			TextView txtView_Title = (TextView) view
					.findViewById(R.id.txt_Title);
			TextView txtView_Context = (TextView) view
					.findViewById(R.id.txt_context);
			ImageView imageView = (ImageView) view
					.findViewById(R.id.image_toast);
			toast = new Toast(getApplicationContext());
			toast.setGravity(Gravity.CENTER, 0, 0);
			toast.setDuration(Toast.LENGTH_LONG);
			toast.setView(view);
			toast.show();

5.长时间显示的Toast显示
这里写图片描述

LayoutInflater inflater1 = getLayoutInflater();
			View view1 = inflater1.inflate(R.layout.userdefinedtoast,
					(ViewGroup) findViewById(R.id.toast_layout));
			TextView txtView_Title1 = (TextView) view1
					.findViewById(R.id.txt_Title);
			TextView txtView_Context1 = (TextView) view1
					.findViewById(R.id.txt_context);
			ImageView imageView1 = (ImageView) view1
					.findViewById(R.id.image_toast);
			builder = new AlertDialog.Builder(this);
			builder.setView(view1);
			dialog = builder.create();
			dialog.show();

6.自定义Toast的布局如下:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:id="@+id/toast_layout"
  android:orientation="vertical"
  android:background="#111111"
  android:layout_width="200dip"
  android:layout_height="fill_parent">
  	<TextView
  		android:id="@+id/txt_Title"
  		android:layout_gravity="center|top"
  		android:text="@string/toast_text_1"
  		android:layout_width="wrap_content"
  		android:layout_height="wrap_content"
  		android:textColor="#ffffff"
  		android:textSize="20dip"
  	></TextView>
  	<LinearLayout
  		android:orientation="horizontal"
  		android:layout_width="wrap_content"
  		android:layout_height="wrap_content"
  		android:background="#999999">
  		<ImageView
	  		android:id="@+id/image_toast"
	  		android:src="@drawable/wallpaper_field_small"
	  		android:layout_width="wrap_content"
	  		android:layout_height="wrap_content"
	  		android:layout_marginRight="10dip"
  		></ImageView>
  		<TextView
  			android:id="@+id/txt_context"
  			android:textColor="#ffffff"
  			android:layout_gravity="center|right"
  			android:text="@string/toast_text_2"
  			android:textSize="15dip"
	  		android:layout_width="wrap_content"
	  		android:layout_height="wrap_content"
  		></TextView>
  	</LinearLayout>
</LinearLayout>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

DT向着太阳迎着光

您的鼓励是我创作最大的动力!

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值