手电筒在nexus 5 android 6.0.1中不起作用

时间:2016-04-04 10:16:36

标签: android nexus-5

我是android新手。我在拨打电话时打开和关闭手电筒的代码。这个代码适用于每个设备,但是在nexus 5中它不工作.i调试并尝试找出问题但没有做(没有强制关闭,没有闪存开关)。

Camera.Parameters pon;
Camera cam;

pon = cam.getParameters();
pon.setFlashMode(Camera.Parameters.FLASH_MODE_TORCH);

控制上升到abov线但仍然不起作用请帮我解决这个问题

目标版本是22 用22编译

1 个答案:

答案 0 :(得分:0)

您必须将build.gradle配置为使用Android 6.0 - > API 23

build.gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.1"

    defaultConfig {
        applicationId "your.app"
        minSdkVersion 17
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}


dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:23.1.1'
    compile 'com.android.support:design:23.1.1'
}