Android指定Toast显示的位置并用Toast显示其他的View

  1. TextView t = new TextView(this);
  2. t.setText("bbbbbbbbbb");
  3. ImageView image = new ImageView(this);
  4. image.setImageResource(R.drawable.ic_launcher);
  5. EditText edit = new EditText(this);
  6. edit.setText("Hello");
  7. Toast toast = new Toast(this);
  8. toast.setView(image);
  9. //toast.setView(image);
  10. bsp; //toast.setView(edit);
  11. toast.setGravity(Gravity.TOP, 50, 100);
  12. toast.show();

转载于:https://my.oschina.net/haquanwen/blog/56182

你可能感兴趣的:(Android指定Toast显示的位置并用Toast显示其他的View)