Semen Matusovskiy Well-Known Member Licensed User Apr 24, 2019 #1 Hi, guys -- I noticed that keyboard has translucent background. How to make it opaque ? And relative question. Is it possible to prevent animation of keyboard ?
Hi, guys -- I noticed that keyboard has translucent background. How to make it opaque ? And relative question. Is it possible to prevent animation of keyboard ?
Erel B4X founder Staff member Licensed User Longtime User Apr 25, 2019 #2 You can change the keyboard appearance with the designer: (TextField or TextArea property) There are two options. You can disable most or all animations with: B4X: Dim no As NativeObject no.Initialize("UIView").RunMethod("setAnimationsEnabled:", Array(False)) Upvote 0
You can change the keyboard appearance with the designer: (TextField or TextArea property) There are two options. You can disable most or all animations with: B4X: Dim no As NativeObject no.Initialize("UIView").RunMethod("setAnimationsEnabled:", Array(False))
Semen Matusovskiy Well-Known Member Licensed User Apr 25, 2019 #3 Erel -- I made a small sample to demonstrate a problem. It's possible to see yellow color under keyboard. About animation. Where how to take UIView from UITextField ? Attachments 1.zip 2.2 KB · Views: 193 Upvote 0
Erel -- I made a small sample to demonstrate a problem. It's possible to see yellow color under keyboard. About animation. Where how to take UIView from UITextField ?
Erel B4X founder Staff member Licensed User Longtime User Apr 25, 2019 #4 Semen Matusovskiy said: I made a small sample to demonstrate a problem. It's possible to see yellow color under keyboard. Click to expand... This is how the keyboard looks in iOS. You can put a view behind it in you like when the keyboard appears. Semen Matusovskiy said: About animation. Where how to take UIView from UITextField ? Click to expand... You don't take anything from the text field. This is a global setting. Upvote 0
Semen Matusovskiy said: I made a small sample to demonstrate a problem. It's possible to see yellow color under keyboard. Click to expand... This is how the keyboard looks in iOS. You can put a view behind it in you like when the keyboard appears. Semen Matusovskiy said: About animation. Where how to take UIView from UITextField ? Click to expand... You don't take anything from the text field. This is a global setting.