package com.otn.android.toast;
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) {
// TODO Auto-generated method stub
AlertDialog.Builder builder;
AlertDialog dialog;
switch (v.getId()) {
case R.id.button_1:
toast.makeText(this, 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();
// initToast();
// myToast();
break;
default:
break;
}
}
// private void myToast(){
// Timer timer = new Timer();
// timer.schedule(new TimerTask() {
// @Override
// public void run() {
// // TODO Auto-generated method stub
// initToast();
// }
// }, 10);
// }
// private void initToast(){
// toast.show();
// }
}
yxkfw
- 粉丝: 82
- 资源: 2万+
最新资源
- (177209628)Matlab与数学算法代码集合.zip
- python入门.zip
- 凸焊机送料工装治具工作台sw2020可编辑全套技术资料100%好用.zip
- 完整的机械臂设计step全套技术资料100%好用.zip
- STM8单片机变频器设计论文(控制有感 无感 无刷电机)
- python的圣诞树的代码来了.zip
- 最新Linux 2.6.1内核源码注释我来试试
- (177376806)2021年第18届数学建模F题论文及程序代码.zip
- 使用脚本给keil生成的烧录程序自动添加版本号和编译时间
- (178071402)逐飞科技TC264智能车代码摄像头
- (178173604)基于ssm+jsp的实验室设备管理系统.zip
- (178180254)仿朋友圈系统开源.zip
- IP102数据集,使用yolov11标注,18975张原图,图片可查看https://backend.blog.csdn.net/article/details/144620956
- 福建省2024-2025学年高三上学期12月测评数学试卷及答案.pdf
- 2025年高考数学新八省预测卷01(20题新题型)(解析版).pdf
- (178205856)python+mysql 学生信息管理系统
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈