本文整理汇总了Java中android.hardware.camera2.CaptureRequest.Key方法的典型用法代码示例。如果您正苦于以下问题:Java CaptureRequest.Key方法的具体用法?Java CaptureRequest.Key怎么用?Java CaptureRequest.Key使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类android.hardware.camera2.CaptureRequest
的用法示例。
在下文中一共展示了CaptureRequest.Key方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: set
import android.hardware.camera2.CaptureRequest; //导入方法依赖的package包/类
/**
* Set a capture request field to a value. The field definitions can be found in CaptureRequest.
* @param key which field definitions in {@link CaptureRequest}
* @throws ObjectNotInitializedException You should call init() before call this method otherwise
* it will throw a ObjectNotInitializedException
*/
public <T> OkCaptureRequestBuilder set(@NonNull CaptureRequest.Key<T> key, T value)
throws ObjectNotInitializedException {
if (mBuilder != null) {
mBuilder.set(key,value);
} else {
throw genException();
}
return this;
}
示例2: set
import android.hardware.camera2.CaptureRequest; //导入方法依赖的package包/类
/**
* Set a capture request field to a value. The field definitions can be found in CaptureRequest.
* @param key which field definitions in {@link CaptureRequest}
* @throws ObjectNotInitializedException You should call init() before call this method otherwise
* it will throw a ObjectNotInitializedException
*/
public <T> OkCaptureRequestBuilder set(@NonNull CaptureRequest.Key<T> key, T value) {
if (mBuilder != null) {
mBuilder.set(key,value);
} else {
throw genException();
}
return this;
}
示例3: get
import android.hardware.camera2.CaptureRequest; //导入方法依赖的package包/类
public <T> T get(@NonNull CaptureRequest.Key<T> key) {
return mBuilder.get(key);
}