博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
消息模式Toast.makeText用法
阅读量:4931 次
发布时间:2019-06-11

本文共 1465 字,大约阅读时间需要 4 分钟。

     

消息模式Toast.makeText用法

 

Toast用于向用户显示一些帮助/提示。下面我做了5中效果,来说明Toast的强大,定义一个属于你自己的Toast。

1.默认效果

代码

Toast.makeText(getApplicationContext(), "默认Toast样式",

     Toast.LENGTH_SHORT).show();

2.自定义显示位置效果

代码

toast = Toast.makeText(getApplicationContext(),

     "自定义位置Toast", Toast.LENGTH_LONG);
   toast.setGravity(Gravity.CENTER, 0, 0);
   toast.show();

3.带图片效果

代码

toast = Toast.makeText(getApplicationContext(),

     "带图片的Toast", Toast.LENGTH_LONG);
   toast.setGravity(Gravity.CENTER, 0, 0);
   LinearLayout toastView = (LinearLayout) toast.getView();
   ImageView imageCodeProject = new ImageView(getApplicationContext());
   imageCodeProject.setImageResource(R.drawable.icon);
   toastView.addView(imageCodeProject, 0);
   toast.show();

4.完全自定义效果

代码

LayoutInflater inflater = getLayoutInflater();

   View layout = inflater.inflate(R.layout.custom,
     (ViewGroup) findViewById(R.id.llToast));
   ImageView image = (ImageView) layout
     .findViewById(R.id.tvImageToast);
   image.setImageResource(R.drawable.icon);
   TextView title = (TextView) layout.findViewById(R.id.tvTitleToast);
   title.setText("Attention");
   TextView text = (TextView) layout.findViewById(R.id.tvTextToast);
   text.setText("完全自定义Toast");
   toast = new Toast(getApplicationContext());
   toast.setGravity(Gravity.RIGHT | Gravity.TOP, 12, 40);
   toast.setDuration(Toast.LENGTH_LONG);
   toast.setView(layout);
   toast.show();

5.其他线程

 代码

new Thread(new Runnable() {

    public void run() {
     showToast();
    }
   }).start();

转载于:https://www.cnblogs.com/techstone/archive/2013/03/28/3321311.html

你可能感兴趣的文章
[Ramda] Curry and Uncurry Functions with Ramda
查看>>
[TypeScript] Function Overloads in Typescript
查看>>
[React] React Fundamentals: Mixins
查看>>
关于SQL数据库 数据库名 表名的一些操作
查看>>
1013. 识别三角形
查看>>
IE8+兼容经验小结
查看>>
Android studio下使用SharedSDK
查看>>
会话与请求
查看>>
hibernate one2many (单向关联)
查看>>
自制反汇编逆向分析工具
查看>>
MS SQLserver数据库安装
查看>>
第2章 数字之魅——斐波那契(Fibonacci)数列
查看>>
Spark集群基于Zookeeper的HA搭建部署笔记(转)
查看>>
Codeforces Round #106
查看>>
vue循环时设置多选框禁用状态,v-for
查看>>
CSS3 2D 转换
查看>>
视觉跟踪入门概念
查看>>
lumen 在AppServiceProvider 使用Illuminate\Support\Facades\Redis 报错
查看>>
Python随心记--函数之面向对象
查看>>
git上传文件夹报错: ! [rejected] master -> master (fetch first) error: failed to push some refs to 'h...
查看>>