android toast居中显示_Android 更改 Toast 的默认位置方法

在Android中,Toast默认位置在屏幕底部,有时并不合适。本文指出将Toast显示在中部或中上部更好,并通过布局文件activity_toast.xml和后台ToastActivity.java代码,演示了如何更改Toast默认位置,包括显示默认、居中、居中上部位置的Toast。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Android中Toast的默认位置在屏幕靠近底部的位置,这个默认位置有时候并不合适。比如页面上内容较少时,内容一般集中在屏幕上半部分,用户的注意力也集中在屏幕上半部分,默认位置的Toast用户可能没有注意到。还有可能是默认位置的Toast被用户的手挡住了。实践中感觉将Toast显示在屏幕的中部或中上部会比较好。如何修改Toast的默认位置呢?下面做一个简单的例子来演示一下。

先上截图:

布局文件activity_toast.xml代码如下:

android:layout_width="match_parent"

android:layout_height="match_parent"

android:orientation="vertical" >

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:onClick="onClickDefaultToast"

android:text="点击显示默认位置的Toast" />

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:onClick="onClickCenterToast"

android:text="点击显示居中位置的Toast" />

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:onClick="onClickTopToast"

android:text="点击显示居中上部位置的Toast" />

后台ToastActivity.java代码如下:

package chengyujia.demo.aty;

import android.os.Bundle;

import android.view.Display;

import android.view.Gravity;

import android.view.View;

import android.widget.Toast;

import chengyujia.demo.R;

public class ToastActivity extends BaseActivity {

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_toast);

}

public void onClickDefaultToast(View v) {

Toast.makeText(this, "默认位置的Toast", Toast.LENGTH_LONG).show();

}

public void onClickCenterToast(View v) {

Toast toast = Toast.makeText(this, "居中位置的Toast", Toast.LENGTH_LONG);

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

toast.show();

}

public void onClickTopToast(View v) {

Display display = getWindowManager().getDefaultDisplay();

// 获取屏幕高度

int height = display.getHeight();

Toast toast = Toast.makeText(this, "居中上部位置的Toast", Toast.LENGTH_LONG);

// 这里给了一个1/4屏幕高度的y轴偏移量

toast.setGravity(Gravity.TOP, 0, height / 4);

toast.show();

}

}

以上这篇Android 更改 Toast 的默认位置方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值