如何更改android中的默认吐司消息颜色和背景颜色?
作者:互联网
我想创建一个背景颜色为白色且消息颜色为黑色的Toast消息.我的祝酒词是:
Toast.makeText(Logpage.this, "Please Give Feedback...", 3000).show();
我想用另一种不在onCreate()中的方法创建它.
解决方法:
您可以创建如下的自定义Toast消息:
Toast toast = new Toast(context);
toast.setDuration(Toast.LENGTH_LONG);
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = inflater.inflate(R.layout.your_custom_layout, null);
toast.setView(view);
toast.show();
您可以将一个textview放在布局文件中,并根据需要提供背景和文本颜色.
您还可以执行以下操作,不需要额外的自定义布局文件:
Toast toast = Toast.makeText(context, R.string.string_message_id, Toast.LENGTH_LONG);
View view = toast.getView();
view.setBackgroundResource(R.drawable.custom_background);
TextView text = (TextView) view.findViewById(android.R.id.message);
/*Here you can do anything with above textview like text.setTextColor(Color.parseColor("#000000"));*/
toast.show();
标签:android,android-toast 来源: https://codeday.me/bug/20191004/1852484.html