这是我必须显示Toast
500 毫秒的方式。不过,它显示的时间超过一秒钟。
Toast.makeText(LiveChat.this, "Typing", 500).show();
我怎样才能Toast
只显示 500 毫秒?
这是我必须显示Toast
500 毫秒的方式。不过,它显示的时间超过一秒钟。
Toast.makeText(LiveChat.this, "Typing", 500).show();
我怎样才能Toast
只显示 500 毫秒?
这是无法做到的。要显示长度小于 的吐司Toast.LENGTH_SHORT
,您必须在所需时间后取消它。就像是:
final Toast toast = Toast.makeText(getApplicationContext(), "This message will disappear in half a second", Toast.LENGTH_SHORT);
toast.show();
Handler handler = new Handler();
handler.postDelayed(new Runnable() {
@Override
public void run() {
toast.cancel();
}
}, 500);
添加到@Senth 的答案中,如果您不想在多次调用 showToast 方法时累积时间,使用相同的消息:
private Toast mToastToShow = null;
String messageBeingDisplayed = "";
/**
* Show Toast message for a specific duration, does not show again if the message is same
*
* @param message The Message to display in toast
* @param timeInMSecs Time in ms to show the toast
*/
public void showToast(String message, int timeInMSecs) {
if (mToastToShow != null && message.equals(messageBeingDisplayed)) {
Log.d("DEBUG", "Not Showing another Toast, Already Displaying");
return;
} else {
Log.d("DEBUG", "Displaying Toast");
}
messageBeingDisplayed = message;
// Set the toast and duration
int toastDurationInMilliSeconds = timeInMSecs;
mToastToShow = Toast.makeText(this, message, Toast.LENGTH_LONG);
// Set the countdown to display the toast
CountDownTimer toastCountDown;
toastCountDown = new CountDownTimer(toastDurationInMilliSeconds, timeInMSecs /*Tick duration*/) {
public void onTick(long millisUntilFinished) {
if (mToastToShow != null) {
mToastToShow.show();
}
}
public void onFinish() {
if (mToastToShow != null) {
mToastToShow.cancel();
}
// Making the Toast null again
mToastToShow = null;
// Emptying the message to compare if its the same message being displayed or not
messageBeingDisplayed = "";
}
};
// Show the toast and starts the countdown
mToastToShow.show();
toastCountDown.start();
}
您现在可以像这样显示 toast 500 毫秒:
showToast("Not Allowed", 500);
我找到了这个答案。虽然有点复杂,但它也允许您创建比 Toast.LENGTH_LONG 更长的 toast。您可能必须将滴答持续时间从 1000 毫秒更改为 500 毫秒。
private Toast mToastToShow;
public void showToast(View view) {
// Set the toast and duration
int toastDurationInMilliSeconds = 10000;
mToastToShow = Toast.makeText(this, "Hello world, I am a toast.", Toast.LENGTH_LONG);
// Set the countdown to display the toast
CountDownTimer toastCountDown;
toastCountDown = new CountDownTimer(toastDurationInMilliSeconds, 1000 /*Tick duration*/) {
public void onTick(long millisUntilFinished) {
mToastToShow.show();
}
public void onFinish() {
mToastToShow.cancel();
}
};
// Show the toast and starts the countdown
mToastToShow.show();
toastCountDown.start();
}
它是这样工作的:倒计时的通知时间比根据标志显示 toast 的持续时间短,因此如果倒计时没有完成,可以再次显示 toast。如果 toast 仍在屏幕上时再次显示,它将在整个持续时间内保持在那里而不会闪烁。倒计时结束后,即使显示持续时间未结束,也会取消 toast 以隐藏它。
即使 toast 必须显示的持续时间短于默认持续时间,这仍然有效:倒计时完成时,显示的第一个 toast 将简单地被取消。
不能用标准的 Toasts 做你要求的事情。也许您应该考虑集成一个 3rd 方库,它可以为您提供更好的 Toast 选项(名为 Crouton)。我自己没有用过,但人们似乎喜欢它。
您无法在标准操作系统中控制 Toast 的长度。
Crouton 链接: https ://github.com/keyboardsurfer/Crouton
这个对我来说很好用。
final Toast mToastToShow;
int toastDurationInMilliSeconds = 10000;
mToastToShow = Toast.makeText(getApplicationContext(), "Snapshot Saved Successfully.",Toast.LENGTH_LONG);
// Set the countdown to display the toast
CountDownTimer toastCountDown;
toastCountDown = new CountDownTimer(toastDurationInMilliSeconds, 1000 /*Tick duration*/) {
public void onTick(long millisUntilFinished) {
mToastToShow.show();
}
public void onFinish() {
mToastToShow.cancel();
}
};
// Show the toast and starts the countdown
mToastToShow.show();
toastCountDown.start();
倒计时用于显示特定持续时间的 toast 消息。
我不相信这可以做到,你只能使用Toast.LENGTH_LONG
或者Toast.LENTH_SHORT
你不能定义你知道的速度。
这是做不到的。Toast.LENGTH_SHORT
和的值Toast.LENGTH_LONG
是 0 和 1。这意味着它们被视为标志而不是实际持续时间,因此我认为不可能将持续时间设置为这些值以外的任何值。
接受的答案是正确的,但在我的情况下,可以注意到吐司闪烁(显示和隐藏)..
我有一个解决方案,其中 Toast 不闪烁,您也可以自定义 Toast。
让我们开始,
1) 创建一个名为 LongToast 的类。
class LongToast {
private LongToast() {}
static void makeLongToast(Context context,String text, long durationInMillis)
{
final Toast toastMessage = new Toast(context);
//Creating TextView.
TextView textView = new TextView(context);
//Setting up Text Color.
textView.setTextColor(Color.parseColor("#fafafa"));
//Setting up Text Size.
textView.setTextSize(17);
//Setting up Toast Message Text.
textView.setText(text);
//Add padding to Toast message.
textView.setPadding(20, 20, 20, 23);
//Add Gravity TextView.
textView.setGravity(Gravity.CENTER);
//Adding TextView into Toast.
toastMessage.setView(textView);
//Access toast message as View.
View toastView = toastMessage.getView();
//Set Custom Background on Toast.
toastView.setBackgroundResource(R.drawable.test);
new CountDownTimer(durationInMillis, 1000)
{
public void onTick(long millisUntilFinished)
{
toastMessage.show();
}
public void onFinish()
{
toastMessage.cancel();
}
}.start();
}
}
2) 创建一个可绘制的 xml 用于自定义 Toast。
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<solid android:color="#009973"/>
<corners android:radius="20dp" />
<stroke
android:width="4dp"
android:color="#01ffc0"
/>
</shape>
您可以根据需要自定义吐司。
3) 最后调用 Toast。
LongToast.makeLongToast(this,"whatever you want",10000);//duration in seconds
参考:点击这里查看
谢谢!!。
我在机器人端创建了一个类 ToastMessage。
public class ToastMessage: IToast
{
public void LongAlert(string message)
{
Toast toast = Toast.MakeText(Android.App.Application.Context, message, ToastLength.Short);
toast.Show();
Device.StartTimer(TimeSpan.FromSeconds(0.5), () =>
{
toast.Cancel();
return false;
});
}
}
我已经创建了接口 IToast
public interface IToast
{
void LongAlert(string message);
}
通过依赖服务调用
DependencyService.Get<IToast>().LongAlert("Right Answer");
我尝试了不同的方法,这种方法对我有用
final Toast mytoast = Toast.makeText(getApplicationContext(), jsonObject.getString("response_message"), Toast.LENGTH_SHORT);
mytoast.show();
Handler handler = new Handler();
handler.postDelayed(new Runnable() {
@Override
public void run() {
mytoast.cancel();
}
}, 5000);// 5 sec
先试试看。这会将 toast 设置为以毫秒为单位的特定时间段:
public void toast(int millisec, String msg) {
Handler handler = null;
final Toast[] toasts = new Toast[1];
for(int i = 0; i < millisec; i+=2000) {
toasts[0] = Toast.makeText(this, msg, Toast.LENGTH_SHORT);
toasts[0].show();
if(handler == null) {
handler = new Handler();
handler.postDelayed(new Runnable() {
@Override
public void run() {
toasts[0].cancel();
}
}, millisec);
}
}
}
Toast.makeText(LiveChar.this,"Typing",Toast.LENGTH_SHORT);
这是唯一可以的方法。。