Commit 7ac98218 by sikang

bug fix bankname null

parent e101799d
......@@ -33,6 +33,8 @@ import android.widget.RelativeLayout;
import android.widget.TextView;
import android.widget.Toast;
import com.common.widget.SpanButton;
import io.reactivex.Observable;
import io.reactivex.ObservableEmitter;
import io.reactivex.ObservableOnSubscribe;
......@@ -106,6 +108,10 @@ public class UIHelper {
if (TextUtils.isEmpty(((EditText) view).getText().toString().replace(" ", ""))) {
return true;
}
}else if (view instanceof SpanButton){
if (TextUtils.isEmpty(((SpanButton) view).getText().toString().replace(" ", ""))) {
return true;
}
}
}
return false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment