Hello,
in my app, i use the method startActivity to launch a new activity.
The code that i use:
but when the startActivity is called, the new activity wasn't launch, it relaunch the current activity.
In LogCat, i found this:
Please could you have an idea of the issue?
Thanks
in my app, i use the method startActivity to launch a new activity.
The code that i use:
Java:
startActivity(new Intent(this, SigninActivity.class));
In LogCat, i found this:
Code:
06-29 17:17:27.887 22615-22615/com.lekonquer.xxx.xxxxW/ActivityThread: handleWindowVisibility: no activity for token android.os.BinderProxy@84263c1
06-29 17:17:27.918 22615-22615/com.lekonquer.xxx.xxxx I/DecorView: It non-support bigbang
06-29 17:17:27.922 22615-22615/com.lekonquer.xxx.xxxxI/PhoneWindow: isNeedChangeNaviBarColor taskInfo: [android.app.ActivityManager$RunningTaskInfo@8eba3f2] size: 1
06-29 17:17:27.922 22615-22615/com.lekonquer.xxx.xxxx I/PhoneWindow: isAPPNeedChange pkgName: com.lekonquer.xxx.xxxx needKeep: false
06-29 17:17:27.922 22615-22615/com.lekonquer.xxx.xxxx I/PhoneWindow: isNeedChangeNaviBarColor false
06-29 17:17:27.922 22615-22615/com.lekonquer.xxx.xxxx I/PhoneWindow: generateLayout mNavigationBarColor: ff000000
06-29 17:17:27.922 22615-22615/com.lekonquer.xxx.xxxx I/PhoneWindow: generateLayout isLightNavi false, Visibility: 0
06-29 17:17:28.139 22615-22615/com.lekonquer.xxx.xxxx I/AssistStructure: Flattened final assist data: 3072 bytes, containing 1 windows, 9 views
Please could you have an idea of the issue?
Thanks