Merge "Refine Activity.isVisibleForAutofill() to let it more readable"
This commit is contained in:
@@ -8411,7 +8411,7 @@ public class Activity extends ContextThemeWrapper
|
||||
* @hide
|
||||
*/
|
||||
public final boolean isVisibleForAutofill() {
|
||||
return mStopped;
|
||||
return !mStopped;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -324,7 +324,7 @@ public final class AutofillClientController implements AutofillManager.AutofillC
|
||||
|
||||
@Override
|
||||
public boolean autofillClientIsVisibleForAutofill() {
|
||||
return !mActivity.isVisibleForAutofill();
|
||||
return mActivity.isVisibleForAutofill();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user