Toast的布局文件:
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/toasttext"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#ffffff"
android:textColor="#000000" />

需要调用toast时,只需调用以下方法即可,str为将要显示的字符串:

private void showToast(String str) {
Toast toast = Toast.makeText(ActivitySetsDetails2.this, "您已经收藏过了",
Toast.LENGTH_SHORT);
toast.setGravity(Gravity.BOTTOM, 0, 0);
View toastText = LayoutInflater.from(ActivitySetsDetails2.this)
.inflate(R.layout.toast_text, null);
TextView tv = (TextView) toastText.findViewById(R.id.toasttext);
tv.setText(str);
tv.setWidth(ActivityCommend.width);
tv.setHeight(cache.getHeight());
tv.setBackgroundColor(Color.GRAY);
tv.setGravity(Gravity.CENTER);
tv.setTextColor(Color.WHITE);
toast.setView(toastText);
toast.show();
}

更多相关文章

  1. android 使用include 调用内部组件
  2. Android(安卓)调用J2EE webservice
  3. 调用与外部接口
  4. error: resource android:attr/dialogCornerRadius not found. M
  5. Android(安卓)service 服务 笔记
  6. Android(安卓)4.0 gallery2 生成video thumbnail的过程
  7. Android网文
  8. android 从tomcat读取文件出错:connect failed: ECONNREFUSED
  9. Android中AppWidget使用方法

随机推荐

  1. android Ongoing
  2. Android - under the hood
  3. android创建通知栏(java版)
  4. Android学习笔记(7)————Android中的
  5. android电量状态获取
  6. 多线程例子 android camera capture
  7. Android各类路径获取方式
  8. android Progressbar浣跨敤
  9. android 对话框实例
  10. ViewPager fragment android tab选项卡的