码迷,mamicode.com
首页 > 其他好文 > 详细

自定义 Toast

时间:2015-06-19 15:23:05      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:android   toast   

自定义 Toast 想要什么样式就可以写什么样式


技术分享

activity

View toastView = getLayoutInflater().inflate(R.layout.toast_bg, null);
        Toast toast=new Toast(getApplicationContext());
        toast.setView(toastView);
        TextView tv=(TextView)toastView.findViewById(R.id.tv_toast);
        tv.setText("您尚未登录,请先登录");
        toast.show();


toast_bg.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:layout_gravity="center"
    android:background="@drawable/toast_bg" >

    <TextView
        android:id="@+id/tv_toast"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:textColor="#000000" >
    </TextView>

</LinearLayout>

toast_bg.xml

<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >

    <solid android:color="#ffffff" />
 
    <stroke
        android:width="1dp"
        android:color="#FFFFFF" />
 
    <padding
        android:bottom="6dp"
        android:left="6dp"
        android:right="6dp"
        android:top="6dp" />

    <corners android:radius="3dp" />

</shape>

自定义 Toast

标签:android   toast   

原文地址:http://blog.csdn.net/menglele1314/article/details/46560959

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!