Android Toast的完全自定义与工具类的编写

在很多软件和游戏比如“IT之家”,“部落冲突”的Toast都和系统的不一样,比如左上角一张图片然后一个Toast信息比如那下面我们就来实现这个Toast,并写成工具类,可以在应用的任意地方调用,贴张你们可能会用到的图片图片
1.layout的编写
toast_layout.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="vertical"
                android:background="@drawable/toast_shape"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content">
<ImageView
    android:id="@+id/toast_iv"
    android:layout_width="20dp"
    android:layout_height="20dp"
    android:src="@drawable/cofe"/>
    <TextView
        android:gravity="center"
        android:id="@+id/toast_tv"
        android:textColor="@color/textWrite"
        android:layout_marginLeft="0dp"
        android:layout_below="@id/toast_iv"
        android:layout_toRightOf="@id/toast_iv"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="一段很长的测试文字"/>
</RelativeLayout>

2.shape.xml的编写
我们可以看到上面的背景是一个椭圆形的蓝色背景,所以我们在drawable的文件夹下创建一个样式叫做toast_shape.xml,在上面的布局文件我们已将将其设置为RelativeLayout的background

<?xml version="1.0" encoding="utf-8"?>

<shape xmlns:android="http://schemas.android.com/apk/res/android">

    android:shape="oval"

    <!-- 填充的颜色 -->

    <solid android:color="#8499FB"/>

    <!-- 设置按钮的四个角为弧形 -->

    <!-- android:radius 弧形的半径 -->

    <corners android:radius="20dip"/>



    <!-- padding: Button 里面的文字与Button边界的间隔 -->

    <padding

        android:right="10dp"

        android:bottom="5dp"

        />

</shape>

3.工具类的编写
为了在其他的类里面调用,我们需要将其写成工具类
MyToast.java


import android.app.Activity;
import android.view.Gravity;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.ImageView;
import android.widget.TextView;
import android.widget.Toast;

import com.example.yuxin.mobilesafer.R;

/**
 * 自定义Toast的工具类
 * Created by yuxin on 2016/7/21 0021.
 */
public class MyToast {

    /**
     * 自定义Toast
     * @param activity  类所在的Activity对象
     * @param massage   要显示的信息
     * @param show_length  显示时间的长短, 常用Toast.LENGTH_LONG ,  Toast.LENGTH_SHORT
     */
    public static  void makeshow(Activity activity,String massage,int show_length){
        //使用布局加载器,将编写的toast_layout布局加载进来
        View view = LayoutInflater.from(activity).inflate(R.layout.toast_layout, null);
        //获取ImageView
        ImageView image = (ImageView) view.findViewById(R.id.toast_iv);
        //设置图片
        image.setImageResource(R.drawable.cofe);
        //获取TextView
        TextView title = (TextView) view.findViewById(R.id.toast_tv);
        //设置显示的内容
        title.setText(massage);
        Toast toast = new Toast(activity);
        //设置Toast要显示的位置,水平居中并在底部,X轴偏移0个单位,Y轴偏移70个单位,
        toast.setGravity(Gravity.CENTER_HORIZONTAL|Gravity.BOTTOM, 0, 70);
        //设置显示时间
        toast.setDuration(show_length);

        toast.setView(view);
        toast.show();
    }
}

4.工具类的调用
例如MainActivity.java显示

 MyToast.makeshow(MainActivity.this,"再按一次退出程序",Toast.LENGTH_SHORT);

显示的结果就是
注意:以上的距离、颜色、图片如果不合适需要自己调整

我的博客网站:http://huyuxin.top/欢迎大家访问!评论!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值