Toast

系统 1593 0
Toast的基本原理其实就是将一个View添加到WindowManager中,让WindowManager来把View显示出来。(WindowManager可以将View显示在任何地方,任何Activity之上)


Toast的默认属性
Java代码 收藏代码
  1. //对其方式为:水平居中,并在底部
  2. mGravity=Gravtiy.CENTER_HORIZONTAL|Gravtiy.BOTTOM;
  3. mX= 0 ;
  4. mY=context.getResources().getDimensionPixelSize(com.android.internal.R.dimen.toast_y_offset);
  5. mHorizontalMargin= 0 ;
  6. mVerticalMargin= 0 ;
  7. 所以用Toast.makeText(getApplicationContext(),R.string.text,Toast.LENGTH_SHORT).show();生成的Toast总是处在底部水平居中的位置



在指定x, y处显示Toast
Java代码 收藏代码
  1. //在(50,100)处显示Toast
  2. Toasttoast=Toast.makeText(getApplicationContext(), "toastuse" ,Toast.LENGTH_SHORT);
  3. toast.setGravity(Gravity.TOP|Gravity.LEFT, 50 , 100 );
  4. toast.show();
  5. //如果使用Gravity.NO_GRAVITY,后面的x,y就是相对于屏幕的中心点的(估计android是默认这么处理的)
  6. Toasttoast=Toast.makeText(getApplicationContext(), "toastuse" ,Toast.LENGTH_SHORT);
  7. toast.setGravity(Gravity.NO_GRAVITY, 50 , 100 );
  8. toast.show();
  9. //用margin来控制toast的位置
  10. Toasttoast=Toast.makeText(getApplicationContext(), "toastuse" ,Toast.LENGTH_SHORT);
  11. toast.setGravity(Gravity.LEFT|Gravity.TOP, 0 , 0 );
  12. //leftMargin,topMargin分别是容器width,height的%多少(这里是10%和20%)
  13. toast.setMargin( 0 .1F, 0 .2F);
  14. toast.show();



指定View的Toast
Java代码 收藏代码
  1. //布局xml:R.layout.toast
  2. <Button
  3. xmlns:android= "http://schemas.android.com/apk/res/android"
  4. android:id= "@android:id/message"
  5. android:layout_width= "fill_parent"
  6. android:layout_height= "wrap_content" />
  7. Toasttoast= new Toast(getApplicationContext());
  8. toast.setView(LayoutInflater.from(getApplicationContext()).inflate(R.layout.toast, null ));
  9. toast.setText( "toastuse" );
  10. //Button是否fill_parent是由gravity控制的,xml中的不起任何作用
  11. toast.setGravity(toast.getGravity()|Gravity.FILL_HORIZONTAL,
  12. toast.getXOffset(),toast.getYOffset());
  13. toast.setDuration(Toast.LENGTH_SHORT);
  14. toast.show();

Toast部分源码
Java代码 收藏代码
  1. //Toast的构造器只设置了mY这个属性。mNextView,mDuration都没有设置(用makeText的话,这两个属性会设置)
  2. public Toast(Contextcontext){
  3. mContext=context;
  4. mTN= new TN();
  5. mY=context.getResources().getDimensionPixelSize(com.android.internal.R.dimen.toast_y_offset);
  6. }
  7. //setText方法,需要将显示text的view的id设为@android:id/message,否则会抛RuntimeException
  8. public void setText(CharSequences){
  9. if (mNextView== null ){
  10. throw new RuntimeException( "ThisToastwasnotcreatedwithToast.makeText()" );
  11. }
  12. TextViewtv=(TextView)mNextView.findViewById(com.android.internal.R.id.message);
  13. if (tv== null ){
  14. throw new RuntimeException( "ThisToastwasnotcreatedwithToast.makeText()" );
  15. }
  16. tv.setText(s);
  17. }




一直显示的Toast
实现原理是:在Toast隐藏之前,再show一个相同的Toast,来实现长显示的假象
Java代码 收藏代码
  1. private class ToastWrapper{
  2. private ToastmToast;
  3. private HandlermHandler;
  4. private RunnablemShowToast= new Runnable(){
  5. @Override
  6. public void run(){
  7. continueShow();
  8. }
  9. };
  10. private boolean mCancelled= true ;
  11. public ToastWrapper(Contextctxt){
  12. this (ctxt, new Handler());
  13. }
  14. public ToastWrapper(Contextctxt,Handlerhandler){
  15. mToast=Toast.makeText(ctxt, null ,Toast.LENGTH_SHORT);
  16. mHandler=handler;
  17. }
  18. public ToastgetToast(){
  19. return mToast;
  20. }
  21. public void showUntilCancel(){
  22. if (mCancelled){
  23. mCancelled= false ;
  24. mToast.setDuration(Toast.LENGTH_LONG);
  25. continueShow();
  26. }
  27. }
  28. public void cancel(){
  29. mCancelled= true ;
  30. mToast.cancel();
  31. }
  32. private void continueShow(){
  33. if (mCancelled){
  34. return ;
  35. }
  36. mToast.show();
  37. mHandler.postDelayed(mShowToast, 3000 );
  38. }
  39. }

使用ToastWrapper
Java代码 收藏代码
  1. //一直显示的toast
  2. toastWrapper= new ToastWrapper(getApplicationContext());
  3. Toasttoast=toastWrapper.getToast();
  4. toast.setText( "toastwrapper" );
  5. //...
  6. Buttonbutton= new Button(getApplicationContext());
  7. button.setText( "一直显示toast" );
  8. button.setOnClickListener( new View.OnClickListener(){
  9. @Override
  10. public void onClick(Viewview){
  11. toastWrapper.showUntilCancel();
  12. }
  13. });
  14. Buttonbutton= new Button(getApplicationContext());
  15. button.setText( "隐藏toast" );
  16. button.setOnClickListener( new View.OnClickListener(){
  17. @Override
  18. public void onClick(Viewview){
  19. toastWrapper.cancel();
  20. }
  21. });
  22. //一搬的toast
  23. Buttonbutton= new Button(getApplicationContext());
  24. button.setText( "一般的toast" );
  25. button.setOnClickListener( new View.OnClickListener(){
  26. @Override
  27. public void onClick(Viewview){
  28. Toasttoast=toastWrapper.getToast();
  29. toast.setDuration(Toast.LENGTH_SHORT);
  30. toast.show();
  31. }
  32. });

Android 服务service里面出Toast:

  1. if (phoneIsInUse())
  2. {
  3. new Thread( new Runnable(){
  4. public void run(){
  5. Looper.prepare();
  6. Toast
  7. .makeText(
  8. VuiService. this ,
  9. "请结束通话后再试" ,Toast.LENGTH_LONG).show();
  10. Looper.loop();
  11. }
  12. }).start();
  13. return ;
  14. }

Toast


更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论