在Android中,我们可以使用以下方法来判断一个对象是否为空:
使用TextUtils.isEmpty()方法判断字符串是否为空或null:String text = "hello";if (!TextUtils.isEmpty(text)) { // text is not empty}使用TextUtils.isEmpty()方法判断CharSequence是否为空或null:CharSequence charSequence = "hello";if (!TextUtils.isEmpty(charSequence)) { // charSequence is not empty}使用TextUtils.isEmpty()方法判断List是否为空或null:List<String> list = new ArrayList<>();if (!TextUtils.isEmpty(list)) { // list is not empty}使用Objects.requireNonNull()方法判断对象是否为空:Object obj = new Object();if (Objects.requireNonNull(obj) != null) { // obj is not null}这些方法可以帮助我们在Android开发中进行非空判断,避免空指针异常的发生。


