好的,我有1个自定义吐司(xml布局),效果很好:
LayoutInflater inflater = getLayoutInflater();
View layout = inflater.inflate(R.layout.custom_toast, (ViewGroup) findViewById(R.id.toast_layout));
ImageView image = (ImageView) layout.findViewById(R.id.logo);
image.setImageResource(R.drawable.logo);
title = (TextView) layout.findViewById(R.id.title);
txt = (TextView) layout.findViewById(R.id.text);
toast = new Toast(appContext);
toast.setGravity(Gravity.FILL_HORIZONTAL|Gravity.BOTTOM, 0, 0);
toast.setDuration(Toast.LENGTH_LONG);
toast.setView(layout);
但是当我尝试以同样的方式制作第二个时,我会收到错误的“未找到来源”,这并没有真正告诉我任何有关错误的信息。
LayoutInflater infl = getLayoutInflater();
View lay = infl.inflate(R.layout.toast_arrows, (ViewGroup) findViewById(R.id.toast_lay));
toastarrows = new Toast(appContext);
toastarrows.setGravity(Gravity.FILL_HORIZONTAL|Gravity.CENTER, 0, 0);
toastarrows.setDuration(Toast.LENGTH_SHORT);
toastarrows.setView(lay);
toastarrows.show();
我希望那些2个祝酒词几乎同时出现在屏幕的不同位置。 有人可以告诉我这个代码有什么问题吗?
答案 0 :(得分:0)
你确定你可以同时出示2 Toast吗? 我不确定这个,我尝试了但是我只能展示一个吐司。 你试图只显示第二个?
答案 1 :(得分:0)
似乎如果你真的在同一时间创造了两个祝酒词,它们仍将在同一个地方一个接一个地展示。所以我认为你的耍弄是徒劳的。