android toast居中显示_android Toast 弹出在屏幕中间位置以及自定义Toast

android toast居中显示_android Toast 弹出在屏幕中间位置以及自定义ToastToast我想我们应该使用的都很多,一般我们使用默认设置较多,但是默认设置往往不能满足我们的需求,那我们现在来自定义下:默认Toast:Toast.makeText(MainActivity.this,”点击按钮”,Toast.LENGTH_SHORT).show();设置Toast位置:通过setGravity设置Toast位置,可以是Gravity.CENTER:中间Gravity.BOTT…

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

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

Toast 我想我们应该使用的都很多,一般我们使用默认设置较多,但是默认设置往往不能满足我们的需求,那我们现在来自定义下:

默认Toast:

Toast.makeText(MainActivity.this,”点击按钮”,Toast.LENGTH_SHORT).show();

设置Toast位置:

通过setGravity设置Toast位置,可以是

Gravity.CENTER:中间

Gravity.BOTTOM:下方

Gravity.TOP:上方

Gravity.RIGHT:右边

Gravity.LEFT:左

Toast toast = Toast.makeText(getApplicationContext(), “点击按钮”, Toast.LENGTH_SHORT);

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

toast.show();

Toast 也可以是个布局:这个布局里可以是任何控件  图片 文字 等

Toast toast2 = new Toast(MainActivity.this);

View view = LayoutInflater.from(MainActivity.this).inflate(R.layout.toast_custom, null);

toast2.setView(view);

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

toast2.show();

下面附上一个 ToastUtil类:

public class ToastUitl {

private static Toast toast;

private static Toast toast2;

/**

* 初始化Toast(消息,时间)

*/

private static Toast initToast(CharSequence message, int duration) {

if (toast == null) {

toast = Toast.makeText(BaseApplication.getAppContext(), message, duration);

} else {

//设置文字

toast.setText(message);

//设置存续期间

toast.setDuration(duration);

}

return toast;

}

/**

* 短时间显示Toast(消息 String等)

*/

public static void showShort(CharSequence message) {

initToast(message, Toast.LENGTH_SHORT).show();

}

/**

* 短时间显示Toast(资源id)

*/

public static void showShort(int strResId) {

initToast(BaseApplication.getAppContext().getResources().getText(strResId), Toast.LENGTH_SHORT).show();

}

/**

* 长时间显示Toast(消息 String等)

*/

public static void showLong(CharSequence message) {

initToast(message, Toast.LENGTH_LONG).show();

}

/**

* 长时间显示Toast(资源id)

*/

public static void showLong(int strResId) {

initToast(BaseApplication.getAppContext().getResources().getText(strResId), Toast.LENGTH_LONG).show();

}

/**

* 自定义显示Toast时间(消息 String等,时间)

*/

public static void show(CharSequence message, int duration) {

initToast(message, duration).show();

}

/**

* 自定义显示Toast时间(消息 资源id,时间)

*/

public static void show(int strResId, int duration) {

initToast(BaseApplication.getAppContext().getResources().getText(strResId), duration).show();

}

/**

* 显示有image的toast 这是个view

*/

public static Toast showToastWithImg(final String tvStr, final int imageResource) {

if (toast2 == null) {

toast2 = new Toast(BaseApplication.getAppContext());

}

View view = LayoutInflater.from(BaseApplication.getAppContext()).inflate(R.layout.toast_custom, null);

TextView tv = (TextView) view.findViewById(R.id.toast_custom_tv);

tv.setText(TextUtils.isEmpty(tvStr) ? “” : tvStr);

ImageView iv = (ImageView) view.findViewById(R.id.toast_custom_iv);

if (imageResource > 0) {

iv.setVisibility(View.VISIBLE);

iv.setImageResource(imageResource);

} else {

iv.setVisibility(View.GONE);

}

toast2.setView(view);

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

toast2.show();

return toast2;

}

}

对应的布局文件:此布局文件根据自己需求自定义

android:layout_width=”wrap_content”

android:layout_height=”wrap_content”

android:padding=”10dp”

android:layout_marginLeft=”10dp”

android:layout_marginRight=”10dp”

android:orientation=”vertical”>

android:layout_marginTop=”10dp”

android:id=”@+id/toast_custom_iv”

android:layout_width=”60dp”

android:layout_height=”60dp”

android:src=”@mipmap/ic_launcher”

android:layout_gravity=”center”/>

android:id=”@+id/toast_custom_tv”

android:layout_width=”wrap_content”

android:layout_height=”wrap_content”

android:layout_marginTop=”5dp”

android:textSize=”16sp”

android:layout_marginLeft=”5dp”

android:layout_marginRight=”5dp”

android:layout_marginBottom=”10dp”

android:textColor=”#000″

tools:text=”点击toast” />

补充:

自定义Toast 填充满整个屏幕:

Toast toast2 = new Toast(MainActivity.this);

View view = LayoutInflater.from(MainActivity.this).inflate(R.layout.toast_custom, null);

ImageView iv_toast = (ImageView) view.findViewById(R.id.iv_toast);

TextView tv_toast = (TextView) view.findViewById(R.id.tv_toast);

toast2.setView(view);

toast2.setGravity(Gravity.FILL_HORIZONTAL | Gravity.VERTICAL_GRAVITY_MASK, 0, 0);

toast2.show();

注意:布局文件要

android:layout_width=”match_parent”android:layout_height=”match_parent”

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

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/194581.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • lte band41频率范围_lte频点和频段对照表

    lte band41频率范围_lte频点和频段对照表4GLTE各band对应的频率一览表在调试过程中,有时对band具体的频率不清楚,这里记录一下:

  • 计算机毛利润的函数,毛利率计算公式

    计算机毛利润的函数,毛利率计算公式

  • ORACLE游标(oracle游标属性)

    ORACLE游标(oracle游标属性)文章目录1概述1.1思维导图2语法2.1基本写法(4步)2.2游标4大属性3分类3.1静态游标3.1.1隐式游标dml3.1.2显式游标cursor3.2动态游标3.2.1自定义类型refcursor3.2.2系统类型sys_refcursor4扩展4.1三种游标循环效率对比4.2实例:实际开发中,游标遍历数据1概述1.游标是什么?用来存储多条查询数据的一种数据结构(’结果集’),它有一个’指针’,从上往下移动(’fetch’),从而能够’

  • SwapBuffer驱动进阶(一)[通俗易懂]

    SwapBuffer驱动进阶(一)[通俗易懂]之前通过阅读swapbuffer的read的部分代码,基本上弄明白了缓存交换的原理。    那么我们怎么做到文件的透明加解密,直接使用其缓存交换的方式来实现呢,目前参考了Antinvader,有一个步骤是肯定要做的,那就是在Create的Post中,添加文件流的上下文,这样才能知道你打开的文件,是不是在read中确认是你需要处理的问题,因为在Read中的FileName是不准确的,例

  • 4个基本不等式的公式高中_不等式链(高中4个基本不等式链推导)

    4个基本不等式的公式高中_不等式链(高中4个基本不等式链推导)高中数学基本不等式链如下:算术平均数(arithmeticmean),又称均值,是统计学中最基本、最常用的一种平均指标,分为简单算术平均数、加权算术平均数。它主要.几个不等式联立起来,叫做不等式组即不等式链。用大于号“>”、小于号“在不等式中,有重要作用的抄几个基本不等式,串在一起,即:当a,b>0时,2ab/(a+b)<=根号ab<=(a+b)/2<=根号[(…

发表回复

您的电子邮箱地址不会被公开。

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