web-dev-qa-db-ja.com

近接センサーが覆われているときは表示を続けます

ディスプレイをオフにせずに近接センサーを傍受したい。

ドキュメントから、2つのブール変数があることがわかります。

proximityMonitoringEnabled
proximityState

そしてこのコード

[UIDevice currentDevice].proximityMonitoringEnabled = YES;

近接センサーが何かを検出すると、電話をかけているときに電話を耳に当てているときと同じように、ディスプレイがオフになります。

近接センサーが覆われているときにディスプレイをオンに保つにはどうすればよいですか?

14

このトピックに関するさまざまなフォーラムを読んだ後、現在、パブリックAPIで、近接センサーがカバーされているときにiPhone画面が真っ暗になるのを防ぐことはできません。センサーでできる唯一のことは、通知センターを通してセンサーが覆われているかどうかを知ることですが、やはり自然な動作を制御することはできません(画面が暗くなる/黒くなるとき)。

8
SierraMike

Appleのドキュメントには、「すべてのiPhoneOSデバイスに近接センサーがあるわけではありません」と記載されています。アプリが実行しているデバイスが近接監視をサポートしているかどうかを確認するには、proximityMonitoringEnabledプロパティをYESに設定してから、その値を確認します。

UIDevice *device = [UIDevice currentDevice];
[device setProximityMonitoringEnabled:YES];

if (device.proximityMonitoringEnabled == YES) {
    [[NSNotificationCenter defaultCenter] addObserver:self 
                                             selector:@selector(proximityChanged:) 
                                                 name:@"UIDeviceProximityStateDidChangeNotification"
                                               object:device];
}

- (void) proximityChanged:(NSNotification *)notification {
    UIDevice *device = [notification object];
    NSLog(@"In proximity: %i", device.proximityState);
}

出典: http://www.whatsoniphone.com/blog/new-in-iphone-30-tutorial-series-part-4-proximity-detection/

センサーの現在の状態を検出するのに役立ちます。

画面の暗さを可能にするパブリックAPI:

[UIScreen mainScreen].wantsSoftwareDimming = YES;
[UIScreen mainScreen].brightness = $your_brightness_value;

ここにあります: iOS 6でwantsSoftwareDimmingに変更しますか?

7
Vi Matviichuk

これを行うためのパブリックAPIはありませんが、IOKitIOHIDEventSystemにフックして、画面の調光通知をリッスンできます。

// Create and open an event system.
IOHIDEventSystemRef system = IOHIDEventSystemCreate(NULL);

// Set the PrimaryUsagePage and PrimaryUsage that the AppleProxShim service uses
int page = 65280;
int usage = 8;

// Create a dictionary to match the service with
CFStringRef keys[2];
CFNumberRef nums[2];
keys[0] = CFStringCreateWithCString(0, "PrimaryUsagePage", 0);
keys[1] = CFStringCreateWithCString(0, "PrimaryUsage", 0);
nums[0] = CFNumberCreate(0, kCFNumberSInt32Type, &page);
nums[1] = CFNumberCreate(0, kCFNumberSInt32Type, &usage);
CFDictionaryRef dict = CFDictionaryCreate(0, (const void**)keys, (const void**)nums, 2, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks);
// Get the total of matching services with the above criteria
CFArrayRef srvs = (CFArrayRef)IOHIDEventSystemCopyMatchingServices(system, dict, 0, 0, 0, 0);

// Get the service
IOHIDServiceRef serv = (IOHIDServiceRef)CFArrayGetValueAtIndex(srvs, 0);
int interval = 1 ;

// Set an interval of 1 , to activate the sensor  
IOHIDServiceSetProperty((IOHIDServiceRef)serv, CFSTR("ReportInterval"), CFNumberCreate(0, kCFNumberSInt32Type, &interval));

// add your event handler
IOHIDEventSystemOpen(system, handle_event, NULL, NULL, NULL);
int defaultInterval = 0;
IOHIDServiceSetProperty((IOHIDServiceRef)serv, CFSTR("ReportInterval"), CFNumberCreate(0, kCFNumberSInt32Type, &defaultInterval));

// close handles and release the IOHIDEventSystemRef
IOHIDEventSystemClose(system, NULL);
CFRelease(system);

イベントハンドラー関数ポインターは次のようになります。

void handle_event(void* target, void* refcon, IOHIDServiceRef service, IOHIDEventRef event) {
    if (IOHIDEventGetType(event) == kIOHIDEventTypeProximity) { // Proximity Event Received
        // not necessary, but if you want the value from the sensor, get it from IOHIDEventGetIntegerValue
        int proximityValue = IOHIDEventGetIntegerValue(event, (IOHIDEventField)kIOHIDEventFieldProximityDetectionMask); // Get the value of the ProximityChanged Field (0 or 64)

        // Call dimScreen with the boolean NO
        int (*SBSSpringBoardServerPort)() = (int (*)())dlsym(RTLD_DEFAULT, "SBSSpringBoardServerPort");
        int port = SBSSpringBoardServerPort(); 
        void (*_SBDimScreen)(int _port,BOOL shouldDim) = (void (*)(int _port,BOOL shouldDim))dlsym(RTLD_DEFAULT, "SBDimScreen");

        // This is where the logic to dim the screen based on the sensor value would go.  In this case, I'm hardcoding NO instead of the value of proximityValue from above
        // BOOL dim = proximityValue == 0 ? NO : YES;
        _SBDimScreen(port, NO); 
    }
}

空の関数ポインタがあるとすべての近接センサーイベントが停止する可能性があるため、_SBDimScreenを呼び出す必要さえない場合があります。

IPhoneDevWikiの AppleProxShim ページのコマンドラインツールの例から変更されたコード。

3
JAL

次のAPIを使用して、近接センサーを有効/無効にします。

[UIDevice currentDevice].proximityMonitoringEnabled = NO; // Disables the Proximity Sensor and won't turnoff the display when sensor covered

[UIDevice currentDevice].proximityMonitoringEnabled = YES; // Enables the Proximity Sensor and will turnoff the display when sensor covered

すべてのiOSデバイスに近接センサーがあるわけではありません。近接監視が利用可能かどうかを判断するには、それを有効にしてみてください。近接監視有効プロパティの値がNOのままの場合、近接監視は使用できません。

0
Praveen Matanam

fo Swift/iOS 10/xcode 8.2

UIDevice.current.isProximityMonitoringEnabled = true/false..
0
ingconti