自定义Toast,实现不错的效果

先上自定义Toast的效果图

自定义Toast,实现不错的效果_第1张图片


熟悉qq的同学一定很熟悉这个吐司,我也是高仿了一下。

布局文件item_toast.xml




    

        

        
    


背景:toast_bg.xml




  

  

  


AlertToast.java

package com.org.sleepgod.widget;

import android.content.Context;
import android.view.Gravity;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.TextView;
import android.widget.Toast;

import com.org.sleepgod.R;


/**
 * 打印自定义Toast
 * Created by cool on 2016/10/20.
 * 说明:http://blog.csdn.net/cool_fuwei/article/details/52876263
 */

public class AlertToast {
    private volatile static AlertToast mAlertToast;
    private Toast mToast;

    private AlertToast() {

    }

    /**
     * 懒汉单例模式
     * @return
     */
    public static AlertToast getInstance() {
        if (mAlertToast == null) {
            synchronized (AlertToast.class) {
                if(mAlertToast == null) {
                    mAlertToast = new AlertToast();
                }
            }
        }
        return mAlertToast;
    }

    /**
     * 打印Toast
     * @param context
     * @param msg
     */
    public void showToast(Context context, String msg){
        if (mToast == null) {
            synchronized (AlertToast.class) {
                if(mToast == null) {
                    mToast = new Toast(context);
                }
            }
        }
        View layout = LayoutInflater.from(context).inflate(R.layout.item_toast,null);
        TextView text = (TextView) layout.findViewById(R.id.text);
        text.setText(msg);
        mToast.setGravity(Gravity.TOP, 0, 0);
        mToast.setDuration(Toast.LENGTH_SHORT);
        mToast.setView(layout);
        mToast.show();
    }
}



使用:

public void click(View v){
        AlertToast toast = AlertToast .getInstance();
toast.showToast(this, "最多选只能选取6张照片"); 
}

使用到的图片资源:<---图片位置,资源图一张透明的图片,这里看的不是很明显,不过可以下下来

 
 

你可能感兴趣的:(Android)