~~~~我的生活,我的点点滴滴!!


Toast是Android中用来显示信息的一种机制,和Dialog不同,Toast没有焦点,而且Toast显示的时间有限,一定时间后就会自动消失。Toast一般用来提示用户的误操作。但是如果同时显示多个Toast信息时,系统会将这些Toast信息放到队列中,等前一个Toast信息显示关闭后才会显示下一个Toast信息。当用户在某些情况下,误操作多次时,使用 Toast提示会出现很多个Toast依次显示,在页面上停留很长时间,用户体验很不好!为了解决这一问题,每次创建Toast时先做一下判断,如果前面有Toast在显示,只需调用Toast中的setText()方法将要显示的信息替换即可。

自定义CustomToast代码如下:


public class CustomToast {private static Toast m_toast;private static Handler m_handler = new Handler();private static Runnable m_runnable = new Runnable() {@Overridepublic void run() {// TODO Auto-generated method stubm_toast.cancel();}};public static void showToast(Context context, String text, int duration){m_handler.removeCallbacks(m_runnable);if( m_toast != null ){m_toast.setText(text);}else{m_toast = Toast.makeText(context, text, Toast.LENGTH_SHORT);}m_handler.postDelayed(m_runnable, duration);m_toast.show();}public static void showToast(Context context, int resId, int duration) {showToast(context, context.getResources().getString(resId), duration);}};

显示Toast代码:CustomToast.showToast(getBaseContext(), "提示信息", 1000);因为一般提示信息都是放在strings.xml中,所以为了方便使用,又写了个方法:

public static void showToast(Context mContext, int resId, int duration) {showToast(mContext, mContext.getResources().getString(resId), duration);}

对于疯狂Android里面NumberPickerTest例子我们改一下后如下:

public class MainActivity extends Activity {private int minP = 5;private int maxP = 100;private NumberPicker numpicker1 = null;private NumberPicker numpicker2 = null;final private CustomToast m_toast = new CustomToast();private void showSelectedPrice(){m_toast.showToast(this, "您选择最低价格为:" + minP + ", 最高价格为:" + maxP, 1000);//Toast.makeText(this, , Toast.LENGTH_SHORT).show();}@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);numpicker1 = (NumberPicker)findViewById(R.id.numberPicker1);numpicker1.setMaxValue(maxP);numpicker1.setMinValue(minP);numpicker1.setValue(minP+10);numpicker1.setOnValueChangedListener(new OnValueChangeListener() {@Overridepublic void onValueChange(NumberPicker picker, int oldVal, int newVal) {// TODO Auto-generated method stubminP = newVal;showSelectedPrice();}});numpicker2 = (NumberPicker)findViewById(R.id.numberPicker2);numpicker2.setMaxValue(maxP);numpicker2.setMinValue(minP);numpicker2.setValue(minP+20);numpicker2.setOnValueChangedListener(new OnValueChangeListener() {@Overridepublic void onValueChange(NumberPicker picker, int oldVal, int newVal) {// TODO Auto-generated method stubmaxP = newVal;showSelectedPrice();}});}@Overridepublic boolean onCreateOptionsMenu(Menu menu) {// Inflate the menu; this adds items to the action bar if it is present.getMenuInflater().inflate(R.menu.main, menu);return true;}}


完美解决了Toast显示内容的bug问题。



更多相关文章

  1. android微信api登录的接入
  2. Symbian生不逢时,被迫闭源是必然结局
  3. Android(安卓)9 Pie新动态
  4. 【Android笔记 二】Location获取地理位置信息(上)
  5. Android权限管理详解
  6. android:windowIsTranslucent &分享回调 引发的血案
  7. Android(安卓)收集程序崩溃异常信息
  8. Android中的Toast重复显示的问题
  9. Android(安卓)运行时权限申请之电话权限(兼容6.0以上)

随机推荐

  1. Android在中国的发展分析
  2. Android(安卓)判断某一个类是否存在任务
  3. 关于 Android(安卓)程序员最近的状况
  4. android颜色值的表示方法android:backgro
  5. 【转】有关Android线程的学习
  6. 1.android体系结构介绍
  7. android中使用URL Scheme方式启动app
  8. 新书内容连载(3):Android(安卓)SDK中常用命
  9. android之字体阴影效果
  10. 关于 Android(安卓)程序员最近的状况