Java for android error: "IR emitter not available" in a device that HAS IR support

Java for android error: "IR emitter not available" in a device that HAS IR support

我在手机中使用其他应用程序,使用它的红外线。 但是当我尝试在任何项目中使用 IREmitter 时,它会触发该错误!

mCIR = (ConsumerIrManager)getSystemService(this.CONSUMER_IR_SERVICE);
if (!mCIR.hasIrEmitter()) {
     mFreqsText.setText("No IR Emitter found!");
     Log.e(TAG, "No IR Emitter found!\n");
}

这给了我 "No IR Emitter found"。 这是我的清单

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.felipenmoura.irtest">

<uses-permission android:name="android.permission.TRANSMIT_IR" android:required="true"/>
<uses-feature android:name="android.hardware.consumerir" android:required="true"/>

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >

    <activity
        android:name=".MainActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

关于我为什么要浪费这么多时间的任何线索?是的,我是 java 的菜鸟,抱歉!

LG 似乎有自己的 IR blaster SDK。 LG QRemote SDK。

http://developer.lge.com/resource/mobile/RetrieveOverview.dev?categoryTypeCode=ANRS

在列表末尾。