|
|
|
|
@ -8,6 +8,7 @@ import android.content.Intent;
|
|
|
|
|
import android.content.pm.PackageManager;
|
|
|
|
|
import android.os.Environment;
|
|
|
|
|
import android.os.Handler;
|
|
|
|
|
import android.os.Looper;
|
|
|
|
|
import android.text.TextUtils;
|
|
|
|
|
import android.util.Base64;
|
|
|
|
|
import android.view.View;
|
|
|
|
|
@ -168,7 +169,7 @@ public class HomeFragment extends BaseFragment {
|
|
|
|
|
startActivity(intentWaitFor);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
new Handler().postDelayed(new Runnable() {
|
|
|
|
|
new Handler(Looper.getMainLooper()).postDelayed(new Runnable() {
|
|
|
|
|
@Override
|
|
|
|
|
public void run() {
|
|
|
|
|
//隐藏掉 本平台为非涉密平台,严禁处理、传输国家秘密、工作秘密、商业秘密、敏感信息
|
|
|
|
|
@ -210,6 +211,17 @@ public class HomeFragment extends BaseFragment {
|
|
|
|
|
@Override
|
|
|
|
|
public void onResume() {
|
|
|
|
|
super.onResume();
|
|
|
|
|
if (this.isAdded() && this.isVisible()&&ll_tip.getVisibility()==View.VISIBLE) {
|
|
|
|
|
// Fragment存在且可见,可以安全访问
|
|
|
|
|
new Handler(Looper.getMainLooper()).postDelayed(new Runnable() {
|
|
|
|
|
@Override
|
|
|
|
|
public void run() {
|
|
|
|
|
//隐藏掉 本平台为非涉密平台,严禁处理、传输国家秘密、工作秘密、商业秘密、敏感信息
|
|
|
|
|
//showLog("隐藏掉 本平台为非涉密平台,严禁处理、传输国家秘密、工作秘密、商业秘密、敏感信息")
|
|
|
|
|
ll_tip.setVisibility(View.GONE);
|
|
|
|
|
}
|
|
|
|
|
}, 5000);
|
|
|
|
|
}
|
|
|
|
|
getWaitForToDo();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|