Skip to content

Commit 17931a1

Browse files
authored
Merge pull request #9 from airext/feature/blurred-bg
Blurred background
2 parents 57cc1e4 + 37ae6e4 commit 17931a1

File tree

10 files changed

+108
-57
lines changed

10 files changed

+108
-57
lines changed
1.48 KB
Binary file not shown.
0 Bytes
Binary file not shown.

build/extension.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<extension xmlns="http://ns.adobe.com/air/extension/32.0">
22
<id>com.github.airext.NativeKeyboardText</id>
3-
<versionNumber>0.21.0</versionNumber>
3+
<versionNumber>0.24.0</versionNumber>
44
<platforms>
55
<platform name="iPhone-ARM">
66
<applicationDeployment>

build/platform-ios.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
<!--<packagedDependencies>-->
1111
<!--<packagedDependency></packagedDependency>-->
1212
<!--</packagedDependencies>-->
13-
</platform>
13+
</platform>

native-keyboard-text-air/native-keyboard-text-debug-simple/NativeKeyboardTextDebugSimple-app.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8" ?>
2-
<application xmlns="http://ns.adobe.com/air/application/32.0">
2+
<application xmlns="http://ns.adobe.com/air/application/33.1">
33

44
<!-- Adobe AIR Application Descriptor File Template.
55
Specifies parameters for identifying, installing, and launching AIR applications.

native-keyboard-text-air/native-keyboard-text-debug-simple/native-keyboard-text-debug-simple.iml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<dependency linkage="Merged" />
1010
</entry>
1111
</entries>
12-
<sdk name="33.0" />
12+
<sdk name="33.1.1.86" />
1313
</dependencies>
1414
<compiler-options />
1515
<packaging-air-desktop />
@@ -24,7 +24,7 @@
2424
<FilePathAndPathInPackage file-path="$MODULE_DIR$/src/Default@2x~iphone.png" path-in-package="Default@2x~iphone.png" />
2525
<FilePathAndPathInPackage file-path="$MODULE_DIR$/src/Default~iphone.png" path-in-package="Default~iphone.png" />
2626
</files-to-package>
27-
<AirSigningOptions keystore-path="$USER_HOME$/cert/rozd/max.rozdobudko.apple.dev.p12" provisioning-profile-path="$USER_HOME$/cert/rozd/whateverdev.mobileprovision" />
27+
<AirSigningOptions keystore-path="$USER_HOME$/cert/rozd/development.p12" provisioning-profile-path="$USER_HOME$/cert/rozd/whateverdev.mobileprovision" />
2828
</packaging-ios>
2929
</configuration>
3030
</configurations>
@@ -35,7 +35,7 @@
3535
<content url="file://$MODULE_DIR$">
3636
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
3737
</content>
38-
<orderEntry type="jdk" jdkName="33.0" jdkType="Flex SDK Type (new)" />
38+
<orderEntry type="jdk" jdkName="33.1.1.86" jdkType="Flex SDK Type (new)" />
3939
<orderEntry type="sourceFolder" forTests="false" />
4040
<orderEntry type="module-library" exported="">
4141
<library type="flex">

native-keyboard-text-air/native-keyboard-text-debug-simple/src/NativeKeyboardTextDebugSimple.as

+5-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,11 @@ public class NativeKeyboardTextDebugSimple extends Sprite {
7070

7171
// buttons
7272

73-
new PlainButton(this, {label: "Show Keyboard", y: 150, w: stage.stageWidth / contentScaleFactor, s: contentScaleFactor}, function(): void {
73+
new PlainButton(this, {label: "Version", y: 150, w: stage.stageWidth / contentScaleFactor, s: contentScaleFactor}, function(): void {
74+
log(NativeKeyboardText.extensionVersion);
75+
});
76+
77+
new PlainButton(this, {label: "Show Keyboard", y: 200, w: stage.stageWidth / contentScaleFactor, s: contentScaleFactor}, function(): void {
7478
var params: NativeKeyboardTextParams = new NativeKeyboardTextParams();
7579
params.text = "test";
7680
params.isSecureTextEntry = false;

native-keyboard-text-air/native-keyboard-text-debug/native-keyboard-text-debug.iml

+6-26
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
<configuration name="native-keyboard-text-debug" target-platform="Mobile" main-class="NativeKeyboardTextDebug" output-file="Main.swf" output-folder="$MODULE_DIR$/bin">
66
<dependencies target-player="32.0">
77
<entries>
8-
<entry library-id="67ed7fad-cc17-4db1-a156-520b53c7da9d">
8+
<entry library-id="d38e845e-73cb-46ee-8fc4-156bf25bdb65">
99
<dependency linkage="Merged" />
1010
</entry>
11-
<entry library-id="909da4e5-a9c4-40be-900f-87e005e2ec09">
11+
<entry library-name="4.0.0-air33.0-starling2.5.1-libs" library-level="application">
1212
<dependency linkage="Merged" />
1313
</entry>
14-
<entry library-id="d38e845e-73cb-46ee-8fc4-156bf25bdb65">
14+
<entry library-name="4.0.0-air33.0-starling2.5.1-MetalWorksMobileTheme" library-level="application">
1515
<dependency linkage="Merged" />
1616
</entry>
1717
</entries>
@@ -30,7 +30,7 @@
3030
<FilePathAndPathInPackage file-path="$MODULE_DIR$/src/Default@2x~iphone.png" path-in-package="Default@2x~iphone.png" />
3131
<FilePathAndPathInPackage file-path="$MODULE_DIR$/src/Default~iphone.png" path-in-package="Default~iphone.png" />
3232
</files-to-package>
33-
<AirSigningOptions keystore-path="$USER_HOME$/cert/rozd/max.rozdobudko.apple.dev.p12" provisioning-profile-path="$USER_HOME$/cert/rozd/whateverdev.mobileprovision" />
33+
<AirSigningOptions keystore-path="$USER_HOME$/cert/rozd/max.rozdobudko.dev.p12" provisioning-profile-path="$USER_HOME$/cert/rozd/whateverdev.mobileprovision" />
3434
</packaging-ios>
3535
</configuration>
3636
</configurations>
@@ -43,28 +43,6 @@
4343
</content>
4444
<orderEntry type="jdk" jdkName="4.0.0-air33.0-starling2.5.1" jdkType="Flex SDK Type (new)" />
4545
<orderEntry type="sourceFolder" forTests="false" />
46-
<orderEntry type="module-library" exported="">
47-
<library type="flex">
48-
<properties id="67ed7fad-cc17-4db1-a156-520b53c7da9d" />
49-
<CLASSES>
50-
<root url="file://$USER_HOME$/sdks/feathers/4.0.0-starling2.4.1-aot-patched/frameworks/libs" />
51-
</CLASSES>
52-
<JAVADOC />
53-
<SOURCES />
54-
<jarDirectory url="file://$USER_HOME$/sdks/feathers/4.0.0-starling2.4.1-aot-patched/frameworks/libs" recursive="false" />
55-
</library>
56-
</orderEntry>
57-
<orderEntry type="module-library" exported="">
58-
<library type="flex">
59-
<properties id="909da4e5-a9c4-40be-900f-87e005e2ec09" />
60-
<CLASSES>
61-
<root url="file://$USER_HOME$/sdks/feathers/4.0.0-starling2.4.1-aot-patched/frameworks/themes/MetalWorksMobileTheme" />
62-
</CLASSES>
63-
<JAVADOC />
64-
<SOURCES />
65-
<jarDirectory url="file://$USER_HOME$/sdks/feathers/4.0.0-starling2.4.1-aot-patched/frameworks/themes/MetalWorksMobileTheme" recursive="false" />
66-
</library>
67-
</orderEntry>
6846
<orderEntry type="module-library" exported="">
6947
<library type="flex">
7048
<properties id="d38e845e-73cb-46ee-8fc4-156bf25bdb65" />
@@ -76,5 +54,7 @@
7654
<jarDirectory url="file://$MODULE_DIR$/ane" recursive="false" />
7755
</library>
7856
</orderEntry>
57+
<orderEntry type="library" exported="" name="4.0.0-air33.0-starling2.5.1-libs" level="application" />
58+
<orderEntry type="library" exported="" name="4.0.0-air33.0-starling2.5.1-MetalWorksMobileTheme" level="application" />
7959
</component>
8060
</module>

native-keyboard-text-air/native-keyboard-text/native-keyboard-text.iml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<configurations>
55
<configuration name="native-keyboard-text" target-platform="Mobile" pure-as="true" output-type="Library" output-file="native-keyboard-text.swc" output-folder="$MODULE_DIR$/../floating-keyboard/bin">
66
<dependencies target-player="32.0">
7-
<sdk name="32.0.0" />
7+
<sdk name="33.1.1.86" />
88
</dependencies>
99
<compiler-options />
1010
<packaging-air-desktop />
@@ -20,7 +20,7 @@
2020
<sourceFolder url="file://$MODULE_DIR$/src/main" isTestSource="false" />
2121
<sourceFolder url="file://$MODULE_DIR$/src/default" isTestSource="false" />
2222
</content>
23-
<orderEntry type="jdk" jdkName="32.0.0" jdkType="Flex SDK Type (new)" />
23+
<orderEntry type="jdk" jdkName="33.1.1.86" jdkType="Flex SDK Type (new)" />
2424
<orderEntry type="sourceFolder" forTests="false" />
2525
</component>
2626
</module>

native-keyboard-text-ios/NativeKeyboardText/FloatingKeyboard/ANXNativeKeyboardText.m

+89-22
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
#import "ANXTextField.h"
1111

1212
#define PADDING 8.0f
13+
#define MARGIN 6.0f
1314

1415
#define SYSTEM_VERSION_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedSame)
1516
#define SYSTEM_VERSION_GREATER_THAN(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedDescending)
@@ -245,17 +246,46 @@ - (BOOL)doesKeyboardDisappear:(NSDictionary*)userInfo {
245246

246247
- (UIColor*)textFieldBackgroundColor {
247248
if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"13.0")) {
248-
return UIColor.secondarySystemBackgroundColor;
249+
return [UIColor.labelColor colorWithAlphaComponent:0.2];
249250
} else {
250251
return [UIColor colorWithRed:242.0/255.0 green:242.0/255.0 blue:247.0/255.0 alpha:1.0];
251252
}
252253
}
253254

254255
- (UIColor*)textFieldWrapperBackgroundColor {
255256
if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"13.0")) {
256-
return UIColor.systemBackgroundColor;
257+
NSLog(@"[ANX] UIColor.labelColor");
258+
return [UIColor.labelColor colorWithAlphaComponent:0.2];
257259
} else {
258-
return UIColor.whiteColor;
260+
UIView* view = [self findTopmostView];
261+
switch (view.traitCollection.userInterfaceStyle) {
262+
case UIUserInterfaceStyleDark:
263+
NSLog(@"[ANX] darkTextColor");
264+
return [UIColor.darkTextColor colorWithAlphaComponent:0.2];
265+
default:
266+
NSLog(@"[ANX] lightTextColor");
267+
return [UIColor.lightTextColor colorWithAlphaComponent:0.2];
268+
}
269+
}
270+
}
271+
272+
- (UIBlurEffect*)textFieldWrapperBlurEffect {
273+
if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"13.0")) {
274+
NSLog(@"[ANX] UIBlurEffectStyleSystemUltraThinMaterial");
275+
return [UIBlurEffect effectWithStyle:UIBlurEffectStyleSystemChromeMaterial];
276+
} else {
277+
UIView* view = [self findTopmostView];
278+
switch (view.traitCollection.userInterfaceStyle) {
279+
case UIUserInterfaceStyleDark:
280+
NSLog(@"[ANX] UIBlurEffectStyleDark");
281+
return [UIBlurEffect effectWithStyle:UIBlurEffectStyleDark];
282+
case UIUserInterfaceStyleLight:
283+
NSLog(@"[ANX] UIBlurEffectStyleLight");
284+
return [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];
285+
default:
286+
NSLog(@"[ANX] UIBlurEffectStyleRegular");
287+
return [UIBlurEffect effectWithStyle:UIBlurEffectStyleRegular];
288+
}
259289
}
260290
}
261291

@@ -269,8 +299,8 @@ - (UITextField*)createTextField {
269299

270300
UITextField* inputTextField = [[ANXTextField alloc] init];
271301
inputTextField.delegate = self;
272-
inputTextField.borderStyle = UITextBorderStyleRoundedRect;
273-
inputTextField.backgroundColor = self.textFieldBackgroundColor;
302+
inputTextField.borderStyle = UITextBorderStyleNone;
303+
inputTextField.backgroundColor = UIColor.clearColor;
274304
inputTextField.clearButtonMode = UITextFieldViewModeAlways;
275305
inputTextField.returnKeyType = UIReturnKeyDone;
276306
inputTextField.secureTextEntry = _params.isSecureTextEntry;
@@ -282,28 +312,53 @@ - (UITextField*)createTextField {
282312

283313
[inputTextField sizeToFit];
284314

285-
CGFloat textFieldHeight = inputTextField.frame.size.height;
315+
CGFloat textFieldHeight = inputTextField.frame.size.height + MARGIN * 2;
286316
CGFloat wrapperHeight = textFieldHeight + PADDING * 2;
287317

288318
CGRect rect = CGRectMake(0.0, CGRectGetMaxY(view.bounds) - wrapperHeight,
289319
CGRectGetWidth(view.bounds), wrapperHeight);
290320

291321
UIView* wrapper = [[UIView alloc] initWithFrame:rect];
292322
wrapper.hidden = YES;
293-
wrapper.backgroundColor = self.textFieldWrapperBackgroundColor;
323+
wrapper.backgroundColor = UIColor.clearColor;
294324
[view addSubview:wrapper];
295325

296-
UIView* line = [[UIView alloc] initWithFrame:CGRectMake(0.0, -1.0, wrapper.bounds.size.width, 0.5)];
297-
line.backgroundColor = UIColor.systemGrayColor;
298-
line.alpha = 0.8;
299-
line.tag = 1198;
300-
[wrapper addSubview:line];
326+
UIBlurEffect* blurEffect = [self textFieldWrapperBlurEffect];
327+
UIVisualEffectView* blurView = [[UIVisualEffectView alloc] initWithEffect:blurEffect];
328+
blurView.frame = wrapper.bounds;
329+
blurView.autoresizingMask = true;
330+
blurView.autoresizingMask = UIViewAutoresizingFlexibleWidth & UIViewAutoresizingFlexibleHeight;
331+
[wrapper addSubview:blurView];
332+
333+
// UIVibrancyEffect* vibrancyEffect = [UIVibrancyEffect effectForBlurEffect:blurEffect];
334+
// UIVisualEffectView* vibrancyView = [[UIVisualEffectView alloc] initWithEffect:vibrancyEffect];
335+
// vibrancyView.autoresizingMask = UIViewAutoresizingFlexibleWidth & UIViewAutoresizingFlexibleHeight;
336+
337+
338+
339+
// UIView* line = [[UIView alloc] initWithFrame:CGRectMake(0.0, -1.0, wrapper.bounds.size.width, 0.5)];
340+
// line.backgroundColor = UIColor.systemGrayColor;
341+
// line.alpha = 0.8;
342+
// line.tag = 1198;
343+
// [wrapper addSubview:line];
344+
345+
UIEdgeInsets safeArea = UIEdgeInsetsZero;
346+
if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"13.0")) {
347+
safeArea = view.safeAreaInsets;
348+
}
301349

302-
UIEdgeInsets safeArea = view.safeAreaInsets;
303350
CGFloat left = MAX(safeArea.left, PADDING);
304351
CGFloat right = MAX(safeArea.right, PADDING);
352+
CGFloat textFieldWidth = wrapper.bounds.size.width - (left + right);
353+
354+
UIView* background = [[UIView alloc] initWithFrame:CGRectMake(left, PADDING, textFieldWidth, textFieldHeight)];
355+
background.tag = 1199;
356+
[background.layer setCornerRadius:8.0];
357+
background.layer.masksToBounds = true;
358+
background.backgroundColor = [self textFieldWrapperBackgroundColor];
359+
[wrapper addSubview:background];
305360

306-
inputTextField.frame = CGRectMake(left, PADDING, wrapper.bounds.size.width - (left + right), textFieldHeight);
361+
inputTextField.frame = CGRectMake(left + MARGIN, PADDING + MARGIN, textFieldWidth - MARGIN * 2, textFieldHeight - MARGIN * 2);
307362
[wrapper addSubview:inputTextField];
308363

309364
return inputTextField;
@@ -348,21 +403,33 @@ - (void)adjustTextFieldFrame {
348403

349404
// line
350405

351-
UIView* line = [wrapper viewWithTag:1198];
352-
353-
CGRect lineFrame = line.frame;
354-
lineFrame.size.width = wrapper.bounds.size.width;
355-
line.frame = lineFrame;
406+
// UIView* line = [wrapper viewWithTag:1198];
407+
//
408+
// CGRect lineFrame = line.frame;
409+
// lineFrame.size.width = wrapper.bounds.size.width;
410+
// line.frame = lineFrame;
356411

357412
// input
358413

359-
UIEdgeInsets safeArea = view.safeAreaInsets;
414+
UIEdgeInsets safeArea = UIEdgeInsetsZero;
415+
if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"13.0")) {
416+
safeArea = view.safeAreaInsets;
417+
}
418+
360419
CGFloat left = MAX(safeArea.left, PADDING);
361420
CGFloat right = MAX(safeArea.right, PADDING);
421+
CGFloat textFieldWidth = wrapper.bounds.size.width - (left + right);
422+
423+
// background
424+
425+
UIView* background = [wrapper viewWithTag:1199];
426+
background.frame = CGRectMake(left, PADDING, textFieldWidth, background.frame.size.height);
427+
428+
// input
362429

363430
CGRect inputFrame = self.textField.frame;
364-
inputFrame.origin.x = left;
365-
inputFrame.size.width = wrapper.bounds.size.width - (left + right);
431+
inputFrame.origin.x = left + MARGIN;
432+
inputFrame.size.width = textFieldWidth - MARGIN * 2;
366433
self.textField.frame = inputFrame;
367434
}
368435

0 commit comments

Comments
 (0)