Search Issue Tracker
By Design
Votes
0
Found in
5.3.4f1
Issue ID
788186
Regression
Yes
Android virtual keyboard is white text on white background - caused by AndroidManifest changes from Unity 5.3.3p2
In some cases keyboard text of android keyboard is shown as white in white background which makes it impossible to see when writing.
Comments (3)
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- “ArgumentOutOfRangeException: Length cannot be less than zero.“ error or “NullReferenceException: Object reference not set to an instance of an object“ error is thrown when CoreUnsafeUtils.FixedBufferStringQueue reads out of bounds
- URPPreprocessBuild.OnPostProcessBuild is never executed when building the Player
- [Linux] Using CTRL+Shift+A shortcut for Add Component throws GUI Rendering Errors
- Crash on MonoBehaviour::Transfer<YAMLRead> when upgrading the Magic Leap XR Plugin
- Image is distorted when VisualElement is scaled and Scale Mode set to scale-and-crop
AroraAnkush
Jul 18, 2018 12:18
<resources>
<style name="UnityThemeSelector" parent="android:Theme.Light.NoTitleBar.Fullscreen">
</style>
</resources>
AragornSG
Apr 27, 2016 12:11
After adding the android:theme="@style/UnityThemeSelector" I'm getting the error: CommandInvokationFailure: Failed to re-package resources.
Joskym
Apr 19, 2016 16:42
If you use a custom AndroidManifest you should add android:theme="@style/UnityThemeSelector" in the application bracket.
For ex:
<application android:icon="@drawable/app_icon" android:label="@string/app_name" android:debuggable="false" android:hardwareAccelerated="true" android:theme="@style/UnityThemeSelector">
Unity handle this theme in their manifest but if a plugin added a custom AndroidManifest in the project folder, it overrides the Unity one, so it doesn't select the right Theme.