client_Hale
2018-09-15 39c2fb1616413e3858e78c18f33ce4d26888e6c6
Project/app/src/main/java/com/secondworld/univeralsdk/MainActivity.java
@@ -13,6 +13,7 @@
import android.support.v4.content.PermissionChecker;
import android.view.View;
import android.widget.FrameLayout;
import android.widget.RelativeLayout;
import com.unity3d.player.UnityPlayerActivity;
@@ -22,6 +23,10 @@
    public static boolean isForeground = false;
    // 启用6.0以上权限回调code
    // private static final int CODE_REQUEST_PERMISSION = 1000;
    private RelativeLayout m_MainContainer;
    private int mType;
    private boolean isNotch = false;
    @Override
    protected void onCreate(Bundle savedInstanceState)
@@ -33,6 +38,32 @@
        setContentView(R.layout.activity_main);
        m_MainContainer = (RelativeLayout) findViewById(R.id.main_container);
        String _brand = NotchPhoneUtil.getDeviceBrand();
        if (_brand.indexOf("vivo") >= 0)
        {
            isNotch = NotchPhoneUtil.HasNotchVivo(MainActivity.this);
            mType = 1;
        }
        else if (_brand.indexOf("HUAWEI") >= 0)
        {
            isNotch = NotchPhoneUtil.HasNotchVivo(MainActivity.this);
            mType = 2;
        }
        else if (_brand.indexOf("OPPO") >= 0)
        {
            isNotch = NotchPhoneUtil.HasNotchVivo(MainActivity.this);
            mType = 3;
        }
        else if (_brand.indexOf("Xiaomi") >= 0)
        {
            isNotch = NotchPhoneUtil.HasNotchVivo(MainActivity.this);
            mType = 4;
        }
        NotchPhoneUtil.onConfigurationChanged(this, isNotch, mType, m_MainContainer);
        FrameLayout _frameLayout = (FrameLayout) findViewById(R.id.unity_view);
        View unityView = mUnityPlayer.getView();
        _frameLayout.addView(unityView);
@@ -41,11 +72,17 @@
    }
    @Override
    public void onWindowFocusChanged(boolean b)
    {
        super.onWindowFocusChanged(b);
        H2EngineSDK.onWindowFocusChanged(b);
    }
    @Override
    protected void onNewIntent(Intent intent)
    {
        super.onNewIntent(intent);
        H2EngineSDK.onNewIntent(this, intent);
        LogUtil.i(TAG, "onNewIntent");
    }
    @Override
@@ -58,10 +95,11 @@
    @Override
    public void onConfigurationChanged(Configuration newConfig)
    {
        NotchPhoneUtil.onConfigurationChanged(this, isNotch, mType, m_MainContainer);
        H2EngineSDK.onConfigurationChanged(newConfig);
        super.onConfigurationChanged(newConfig);
        LogUtil.i(TAG, "onConfigurationChanged");
    }
    @Override
@@ -70,7 +108,6 @@
        H2EngineSDK.onStart(this);
        super.onStart();
        LogUtil.i(TAG, "onStart");
    }
    @Override
@@ -80,7 +117,6 @@
        H2EngineSDK.onStop(this);
        super.onStop();
        LogUtil.i(TAG, "onStop");
    }
    @Override
@@ -90,7 +126,6 @@
        H2EngineSDK.onResume(this);
        super.onResume();
        LogUtil.i(TAG, "onResume");
        // 检测本地存储权限是否有, 没有的话要提示用户
        if (PermissionChecker.checkPermission(this,
@@ -143,7 +178,6 @@
        H2EngineSDK.onPause(this);
        super.onPause();
        LogUtil.i(TAG, "onPause");
    }
    @Override
@@ -152,7 +186,6 @@
        H2EngineSDK.onDestroy(this);
        super.onDestroy();
        LogUtil.i(TAG, "onDestroy");
    }
    @Override
@@ -161,7 +194,6 @@
        H2EngineSDK.onRestart(this);
        super.onRestart();
        LogUtil.i(TAG, "onRestart");
    }
}