Toast toast = Toast.makeText(context, "item"+item.getItemId(), Toast.LENGTH_SHORT);
View view = toast.getView();
view.setBackgroundResource(android.R.color.holo_green_light);
toast.setView(view);
toast.show();
/////////////////////////////////////////////////////////////
Toast toast=new Toast(context);
TextView view = new TextView(context);
view.setBackgroundResource(android.R.color.holo_green_light);
view.setTextColor(Color.RED);
view.setText("item"+item.getItemId());
view.setPadding(10, 10, 10, 10);
toast.setGravity(Gravity.CENTER, 0, 40);
toast.setView(view);
toast.show();
相关文章
- ThinkPhp 中Action控制器中动态改变自动完成规则(使用setProperty)
- 使用QStyleFactory::create()来改变风格
- winform中dataGridView隔行显示不同的背景色,鼠标移动上显示不同颜色,离开后变回原色
- 如何在代码中动态改变radioButton的文字位置?
- visual studio 两个以上sln 引用同一个project ,生成时会改变projectguid问题
- LaTeX使用titlesec宏包改变章节编号形式的方法
- 如何改变对话框上的资源(英文变成中文)
- css 设置背景色
- 传说中R-如何在ggplot2中改变图例文本。
- 转载 * jQuery实现动态分割div—通过拖动分隔栏实现上下、左右动态改变左右、上下两个相邻div的大小