Android 5中不同效果的Toast
二、主要的代码
package com.otn.android.toast; import java.util.Timer; import java.util.TimerTask; import android.app.Activity; import android.app.AlertDialog; import android.os.Bundle; import android.view.Gravity; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.ImageView; import android.widget.LinearLayout; import android.widget.TextView; import android.widget.Toast; public class MyToast extends Activity implements OnClickListener { private static final String TOASTBTN_1 = "这是默认的Toast显示"; private static final String TOASTBTN_2 = "这是自定义位置的Toast显示"; private static final String TOASTBTN_3 = "这是带图片的Toast显示"; private static final String TOASTBTN_4 = "这是完全自定义的Toast显示"; private static final String TOASTBTN_5 = "这是长时间的Toast显示"; private Button toastBtn_1, toastBtn_2, toastBtn_3, toastBtn_4, toastBtn_5; private Toast toast = null; @Override protected void onCreate(Bundle savedInstanceState) { // TODO Auto-generated method stub super.onCreate(savedInstanceState); setContentView(R.layout.main); toastBtn_1 = (Button) findViewById(R.id.button_1); toastBtn_2 = (Button) findViewById(R.id.button_2); toastBtn_3 = (Button) findViewById(R.id.button_3); toastBtn_4 = (Button) findViewById(R.id.button_4); toastBtn_5 = (Button) findViewById(R.id.button_5); toastBtn_1.setOnClickListener(this); toastBtn_2.setOnClickListener(this); toastBtn_3.setOnClickListener(this); toastBtn_4.setOnClickListener(this); toastBtn_5.setOnClickListener(this); } @Override public void onClick(View v) { AlertDialog.Builder builder; AlertDialog dialog; switch (v.getId()) { case R.id.button_1: toast.makeText(getApplicationContext(), TOASTBTN_1, Toast.LENGTH_LONG).show(); break; case R.id.button_2: toast = Toast.makeText(getApplicationContext(), TOASTBTN_2, Toast.LENGTH_LONG); toast.setGravity(Gravity.CENTER, 0, 0); toast.show(); break; case R.id.button_3: toast = Toast.makeText(getApplicationContext(), TOASTBTN_3, Toast.LENGTH_LONG); toast.setGravity(Gravity.CENTER, 50, -100); LinearLayout layout = (LinearLayout) toast.getView(); ImageView image = new ImageView(getApplicationContext()); image.setImageResource(R.drawable.wallpaper_tree_small); layout.addView(image, 0); toast.show(); break; case R.id.button_4: LayoutInflater inflater = getLayoutInflater(); View view = inflater.inflate(R.layout.userdefinedtoast, (ViewGroup) findViewById(R.id.toast_layout)); TextView txtView_Title = (TextView) view .findViewById(R.id.txt_Title); TextView txtView_Context = (TextView) view .findViewById(R.id.txt_context); ImageView imageView = (ImageView) view .findViewById(R.id.image_toast); toast = new Toast(getApplicationContext()); toast.setGravity(Gravity.CENTER, 0, 0); toast.setDuration(Toast.LENGTH_LONG); toast.setView(view); toast.show(); break; case R.id.button_5: LayoutInflater inflater1 = getLayoutInflater(); View view1 = inflater1.inflate(R.layout.userdefinedtoast, (ViewGroup) findViewById(R.id.toast_layout)); TextView txtView_Title1 = (TextView) view1 .findViewById(R.id.txt_Title); TextView txtView_Context1 = (TextView) view1 .findViewById(R.id.txt_context); ImageView imageView1 = (ImageView) view1 .findViewById(R.id.image_toast); builder = new AlertDialog.Builder(this); builder.setView(view1); dialog = builder.create(); dialog.show(); toast.makeText(this, TOASTBTN_5, Toast.LENGTH_LONG).show(); break; default: break; } } }

低调大师中文资讯倾力打造互联网数据资讯、行业资源、电子商务、移动互联网、网络营销平台。
持续更新报道IT业界、互联网、市场资讯、驱动更新,是最及时权威的产业资讯及硬件资讯报道平台。
转载内容版权归作者及来源网站所有,本站原创内容转载请注明来源。
- 上一篇
Android 获取系统语言(兼容7.0)
转载连接:http://likfe.com/2017/05/10/android-sys-language/ 前言 获取系统当前语言是一个比较常用的功能,在 Android 7.0 系统上旧函数获取到的当前系统语言并不正确,或者说从 Android 7.0 起,Android 系统语言的规则变了。 下面是未适配 Android 7.0 的代码: //获取 Locale 的方式有二 //方式一 Locale locale = getResources().getConfiguration().locale; //方式二 Locale locale = Locale.getDefault(); //获取当前系统语言 locale.getLanguage(); 由于仅仅根据 getLanguage() 无法全面的了解当前的系统语言信息,比如简体中文和繁体中文的 Language 都是 zh,所以还需要 getCountry() 方法获取地区信息,我们就能得到 zh-CN 和 zh-HK/zh-TW 。 总结一下就是: //获取 Locale 的方式有二 //方式一 Locale locale...
- 下一篇
Android 中的Json解析工具fastjson 、序列化、反序列化
Android中通常需要访问服务器,然而服务器返回的数据很多时候都是Json格式 1、fastjson简介 阿里巴巴FastJson是一个Json处理工具包,包括“序列化”和“反序列化”两部分,它具备如下特征: 速度最快,测试表明,fastjson具有极快的性能,超越任其他的Java Json parser。包括自称最快的JackJson; 功能强大,完全支持JavaBean、集合、Map、日期、Enum,支持范型,支持自省;无依赖,能够直接运行在Java SE 5.0以上版本; 支持Android;开源 (Apache 2.0) 2、fastjson下载地址 gitHub 下载地址 : https://github.com/alibaba/fastjson Android jar包下载: http://repo1.maven.org/maven2/com/alibaba/fastjson/1.1.43.android/ 3、常用的方法 (1)将JsonArray字符串转化成 list 集合, 比如: JSONArray array = 。。。。 List<AD...
相关文章
文章评论
共有0条评论来说两句吧...
文章二维码
点击排行
-
Docker使用Oracle官方镜像安装(12C,18C,19C)
- Springboot2将连接池hikari替换为druid,体验最强大的数据库连接池
- Docker快速安装Oracle11G,搭建oracle11g学习环境
- CentOS8编译安装MySQL8.0.19
- SpringBoot2配置默认Tomcat设置,开启更多高级功能
- MySQL8.0.19开启GTID主从同步CentOS8
- CentOS7,8上快速安装Gitea,搭建Git服务器
- Jdk安装(Linux,MacOS,Windows),包含三大操作系统的最全安装
- SpringBoot2编写第一个Controller,响应你的http请求并返回结果