bugfix: FX-386

包名替换之后过滤文件。
This commit is contained in:
wangcongtao
2020-08-11 17:40:10 +08:00
parent 5bfb3d3984
commit fe38eb6d23
2 changed files with 5 additions and 1 deletions

View File

@@ -308,7 +308,7 @@ public class MainActivity extends MvpActivity< MainView, MainPresenter > impleme
@Override
public void onIntentReceived( String intentStr, Intent intent ) {
if ( TextUtils.equals( Intent.ACTION_CLOSE_SYSTEM_DIALOGS, intentStr ) ) {
mIsHomeKeyDown = true;
mIsHomeKeyDown = intent.getBooleanExtra( "isHomeKeyDown", true );
}
}