android应用开发之多次触发toast的处理【场景】:当一个比如listview多次点击toast,这时候会出现toast延迟的
android应用开发之多次触发toast的处理
【场景】:当一个比如listview多次点击toast,这时候会出现toast延迟的情况
【处理】:以最后一次toast为准处理
【使用方法】:
<?xml version="1.0" encoding="utf-8"?><shape xmlns:android="http://schemas.android.com/apk/res/android" > <corners android:radius="4dip" /> <padding android:bottom="10dip" android:left="6dip" android:right="6dip" android:top="10dip" /> <gradient android:endColor="#323336" android:startColor="#323336" /> <stroke android:width="1dip" android:color="#ffffff" /></shape>
