android取消toast_android重写toast

android取消toast_android重写toast本文实例讲述了AndroidToast通知用法。分享给大家供大家参考,具体如下:Toast在手机屏幕上向用户显示一条信息,一段时间后信息会自动消失。1.默认用法Toast.makeText(getApplicationContext(),”默认Toast样式”,Toast.LENGTH_SHORT).show();2.Fragment中的用法Toast.makeText(getActivity…

大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。

Jetbrains全系列IDE使用 1年只要46元 售后保障 童叟无欺

本文实例讲述了Android Toast通知用法。分享给大家供大家参考,具体如下:

Toast在手机屏幕上向用户显示一条信息,一段时间后信息会自动消失。

1.默认用法

Toast.makeText(getApplicationContext(), “默认Toast样式”,Toast.LENGTH_SHORT).show();

2.Fragment中的用法

Toast.makeText(getActivity(),”网络连接错误,请检察网络设置”, Toast.LENGTH_LONG).show();

3.自定义显示位置效果

toast = Toast.makeText(getApplicationContext(), “自定义位置Toast”, Toast.LENGTH_LONG);

toast.setGravity(Gravity.CENTER, 0, 0);

toast.show();

4.带图片效果

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();

5.完全自定义效果

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();

6.其他线程

Main.java代码:

package com.wjq.toast;

import android.app.Activity;

import android.os.Bundle;

import android.os.Handler;

import android.view.Gravity;

import android.view.LayoutInflater;

import android.view.View;

import android.view.ViewGroup;

import android.view.View.OnClickListener;

import android.widget.ImageView;

import android.widget.LinearLayout;

import android.widget.TextView;

import android.widget.Toast;

public class Main extends Activity implements OnClickListener {

Handler handler = new Handler();

@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.main);

findViewById(R.id.btnSimpleToast).setOnClickListener(this);

findViewById(R.id.btnSimpleToastWithCustomPosition).setOnClickListener(this);

findViewById(R.id.btnSimpleToastWithImage).setOnClickListener(this);

findViewById(R.id.btnCustomToast).setOnClickListener(this);

findViewById(R.id.btnRunToastFromOtherThread).setOnClickListener(this);

}

public void showToast() {

handler.post(new Runnable() {

@Override

public void run() {

Toast.makeText(getApplicationContext(), “我来自其他线程!”,Toast.LENGTH_SHORT).show();

}

});

}

@Override

public void onClick(View v) {

Toast toast = null;

switch (v.getId()) {

case R.id.btnSimpleToast:

Toast.makeText(getApplicationContext(), “默认Toast样式”,Toast.LENGTH_SHORT).show();

break;

case R.id.btnSimpleToastWithCustomPosition:

toast = Toast.makeText(getApplicationContext(), “自定义位置Toast”,Toast.LENGTH_LONG);

toast.setGravity(Gravity.CENTER, 0, 0);

toast.show();

break;

case R.id.btnSimpleToastWithImage:

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();

break;

case R.id.btnCustomToast:

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();

break;

case R.id.btnRunToastFromOtherThread:

new Thread(new Runnable() {

public void run() {

showToast();

}

}).start();

break;

}

}

}

main.xml代码:

android:layout_width=”fill_parent”

android:layout_height=”fill_parent”

android:gravity=”center”

android:orientation=”vertical”

android:padding=”5dip” >

android:id=”@+id/btnSimpleToast”

android:layout_width=”fill_parent”

android:layout_height=”wrap_content”

android:text=”默认” >

android:id=”@+id/btnSimpleToastWithCustomPosition”

android:layout_width=”fill_parent”

android:layout_height=”wrap_content”

android:text=”自定义显示位置” >

android:id=”@+id/btnSimpleToastWithImage”

android:layout_width=”fill_parent”

android:layout_height=”wrap_content”

android:text=”带图片” >

android:id=”@+id/btnCustomToast”

android:layout_width=”fill_parent”

android:layout_height=”wrap_content”

android:text=”完全自定义” >

android:id=”@+id/btnRunToastFromOtherThread”

android:layout_width=”fill_parent”

android:layout_height=”wrap_content”

android:text=”其他线程” >

custom.xml:

android:id=”@+id/llToast”

android:layout_width=”wrap_content”

android:layout_height=”wrap_content”

android:background=”#ffffffff”

android:orientation=”vertical” >

android:id=”@+id/tvTitleToast”

android:layout_width=”fill_parent”

android:layout_height=”wrap_content”

android:layout_margin=”1dip”

android:background=”#bb000000″

android:gravity=”center”

android:textColor=”#ffffffff” />

android:id=”@+id/llToastContent”

android:layout_width=”wrap_content”

android:layout_height=”wrap_content”

android:layout_marginBottom=”1dip”

android:layout_marginLeft=”1dip”

android:layout_marginRight=”1dip”

android:background=”#44000000″

android:orientation=”vertical”

android:padding=”15dip” >

android:id=”@+id/tvImageToast”

android:layout_width=”wrap_content”

android:layout_height=”wrap_content”

android:layout_gravity=”center” />

android:id=”@+id/tvTextToast”

android:layout_width=”wrap_content”

android:layout_height=”wrap_content”

android:gravity=”center”

android:paddingLeft=”10dip”

android:paddingRight=”10dip”

android:textColor=”#ff000000″ />

希望本文所述对大家Android程序设计有所帮助。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。

发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/194402.html原文链接:https://javaforall.net

(0)
全栈程序员-站长的头像全栈程序员-站长


相关推荐

  • java.lang.AbstractMethodError: org.springframework.cloud.netflix.ribbon.RibbonLoadBalancerClient.cho

    java.lang.AbstractMethodError: org.springframework.cloud.netflix.ribbon.RibbonLoadBalancerClient.chojava.lang.AbstractMethodError:org.springframework.cloud.netflix.ribbon.RibbonLoadBalancerClient.choose(Ljava/lang/String;Lorg/springframework/cloud/client/loadbalancer/Request;)Lorg/springframework/cloud/client/ServiceInstance; atorg.springframework.clo

    2022年6月2日
    161
  • java文本框获得输入焦点_文本框获得焦点和失去焦点的判断代码

    java文本框获得输入焦点_文本框获得焦点和失去焦点的判断代码文本框失去焦点事件、获得焦点事件onBlur:当失去输入焦点后产生该事件onFocus:当输入获得焦点后,产生该文件Onchange:当文字值改变时,产生该事件Onselect:当文字加亮后,产生该文件onpropertychange当属性改变发生该事件无论粘贴keyuponchange等,最为敏感先来看javascript的直接写在了input上jquery实现方法对于元素的焦点事件,我们…

    2022年6月26日
    38
  • oracle错误904解决方法_遇到oracle错误 12154

    oracle错误904解决方法_遇到oracle错误 12154案例情景–在一次Oracle数据库导出时:C:\DocumentsandSettings\Administrator>exp[emailprotected]_dbfile=E:\lsxy.dmpowner=lsxyExport:Release11.2.0.1.0-Productionon星期一11月2614:07:182012Copyright(c)…

    2022年9月20日
    0
  • 智慧小区智慧物业管理系统一体化解决方案怎么写_小区物业管理系统界面

    智慧小区智慧物业管理系统一体化解决方案怎么写_小区物业管理系统界面传统物业在管理上不仅成本高,服务质量也很难有所保障。现在很多小区都安装了智能物业管理系统,它将信息手段与现代物业管理工作相结合,帮助物业管理团队及时响应客户需求,降低运营成本,提升服务品质。智慧物业是指充分利用物联网、云计算、移动互联网等新一代信息技术的集成应用,将物业各个单位紧密连接起来,实现数据的融合,建立起高效的联动机制。为业主提供一个安全、便利的智慧化生活环境。会比传统物业,带来更舒适的体验感与满意度。随着物联网不断完善,智能技术几乎渗透到各行各业的众多领域。智能运用的迅速发展将颠覆我们的生

    2022年10月18日
    0
  • 普通最小二乘法_普通最小二乘法的基本原理

    普通最小二乘法_普通最小二乘法的基本原理简单介绍sklearn中的LinearRegression类拟合了一个带有系数w=(w1,w2,…,wp)w=(w1,w2,…,wp)w=(w_1,w_2,…,w_p)的线形模型,使得数据集实际观测数据和预测数据之间的残差平方和最小:minw||Xw−y||22minw||Xw−y||22min_w||Xw-y||^2_2其中向量w=(w1,w2,…,wp)w=(w1,…

    2022年4月19日
    77
  • 2015/8/26 Python基础(1):基本规则及赋值「建议收藏」

    2015/8/26 Python基础(1):基本规则及赋值「建议收藏」Python有如下的基本规则:#后表示注释\n是行分隔符\是继续上一行,将过长语句分开;分号将两个语句连接在一行中:冒号将代码头和体分开代码块用缩进块的方式体现不同缩进深度分隔不同的代码

    2022年7月6日
    16

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注全栈程序员社区公众号