Java for android错误:" IR发射器不可用"在具有IR支持的设备中

时间:2015-08-13 03:51:13

标签: java android mobile infrared

我在手机中使用其他应用程序,使用其IR。 但是当我尝试在任何项目中使用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");
}

这给了我"没有找到IR发射器"。 这是我的明显

<?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中的菜鸟,对不起!

1 个答案:

答案 0 :(得分:1)

看起来LG拥有自己的IR Blaster SDK。 LG QRemote SDK。

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

在列表的最后。