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)
全栈程序员-站长的头像全栈程序员-站长


相关推荐

  • 论如何用cmd命令做出数字雨特效「建议收藏」

    论如何用cmd命令做出数字雨特效「建议收藏」大家应该都看过《黑客帝国》这部电影,当时我就震惊了,那个数字雨特效做的太牛逼了!所以我趁着周末的休闲时间,略加研究,找到了用cmd做数字雨特效的方法,只需要三步:Step1首先,我们新建一个后缀名为.txt的文本文档,然后命名(其实命名都无所谓,你高兴就好),双击进入:Step2在里面编写代码:@echooff//这段代码是用来关闭后面的提示语句的titleqwedsazx890//这段代码是设置访问用户的,大可不必,写上也可以,”title”后面的

    2022年5月9日
    178
  • python psutil替代_python psutil

    python psutil替代_python psutil1、CPU1psutil.cpu_times(percpu=False)返回cpu使用时间元祖。若percpu=True,返回各个CPU的使用情况列表。1psutil.cpu_percent(interval,percpu)#返回CPU利用率2psutil.cpu_times_percent(interval=None,percpu=False)3psutil.cpu_count(lo…

    2022年6月7日
    28
  • 实现JQuery EasyUI右键菜单变灰不可用效果

    实现JQuery EasyUI右键菜单变灰不可用效果

    2021年8月12日
    46
  • could not get lock /var/lib/apt/lists/lock_var目录满了有什么影响

    could not get lock /var/lib/apt/lists/lock_var目录满了有什么影响在Ubuntu中,有时候运用sudo apt-getinstall安装软件时,会出现一下的情况E:Couldnotgetlock/var/lib/dpkg/lock-open(11:Resourcetemporarilyunavailable)E:Unabletolocktheadministrationdirectory(/var/lib/dpk

    2022年10月6日
    0
  • C++数组初始化[通俗易懂]

    C++数组初始化[通俗易懂]C++数组初始化定义:int*pia=newint[10];// arrayof10uninitialized ints此 new 表达式分配了一个含有10个 int 型元素的数组,并返回指向该数组第一个元素的指针,此返回值初始化了指针 pia。在自由存储区中创建的数组对象是没有名字的,只能通过其地址间接地访问堆中的对象。注意:C++使用new和delete…

    2022年7月18日
    17
  • idea在方法上自动生成注释_idea中如何快速注释

    idea在方法上自动生成注释_idea中如何快速注释目录目录生成类注释生成类注解模板生成方法注释生成方法注解模板最近从eclipse转idea了,第一步当然是配置快捷键,模板等。但是!发生了一件贼蛋疼的事情,竟然一直找不到正确添加方法注释的方法!最后自己摸索到了,在此详细记录,供大家参考。本人用的ideaformac,可能快捷键不同,但是设置等肯定是相同的生成类注释打开PreferencesEditor->Fil

    2022年9月30日
    0

发表回复

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

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