拦截应用Toast

2022-09-20  本文已影响0人  电动自行车租赁

拦截应用Toast

frameworks\base\core\java\android\widget\Toast.java
/**
* Show the view for the specified duration.
*/
public void show() {
if (mNextView == null) {
throw new RuntimeException("setView must have been called");
}

    TextView tv = (TextView)mNextView.findViewById(com.android.internal.R.id.message);

    if(tv.getText().toString().contains("boot fail") || tv.getText().toString().equals("boot fail ->")){
            cancel();
            return;
    }
上一篇 下一篇

猜你喜欢

热点阅读