自定义控件:Toast

比较简单,直接贴代码

效果图

这里写图片描述

toast的布局:custom_toast.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:background="@drawable/custom_toast"
    android:orientation="horizontal">

    <ImageView
        android:id="@+id/iv"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@mipmap/ic_launcher"/>

    <TextView
        android:id="@+id/tv"
        android:layout_width="wrap_content"
        android:textColor="@android:color/white"
        android:textSize="20sp"
        android:layout_height="wrap_content"
        android:text=""/>

</LinearLayout>

custom_toast.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <corners android:radius="10dp"/>
    <solid android:color="#21211d"/>
</shape>

CustomToast

public class CustomToast {

    private static Toast toast;

    public static void showToast(Context context, String content) {

        if (toast == null) {
            View toastView = LayoutInflater.from(context).inflate(R.layout.custom_toast, null);
//          ImageView iv = (ImageView) toastView.findViewById(R.id.iv);
            TextView tv = (TextView) toastView.findViewById(R.id.tv);
            tv.setText(content);

            toast = new Toast(context);
            toast.setDuration(Toast.LENGTH_SHORT);
            toast.setView(toastView);
            toast.setGravity(Gravity.CENTER, 0, 0);
        }
        toast.show();
    }
}

Toast居中

Toast toast = Toast.makeText(context, text, Toast.LENGTH_SHORT);
toast.setGravity(Gravity.CENTER,0,0);

使用

CustomToast.showToast(MainActivity.this,"已达到北京");

其它

Demo:http://git.oschina.net/customView/customtoast01
参考:自定义Toast样式

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值