我想在屏幕上预览相机(Android Studio),问题是我在一个扩展片段的类中。我想将它放在一个表面视图上(尺寸约为屏幕尺寸的1/6),这样当我捕捉图片时,预览总是在表面视图上独立运行。
拍照的代码运行正常,我唯一能做的就是在曲面视图上创建独立预览。
关于如何实现这一点的任何想法?鉴于我已经在片段中并且我已经创建了方法document
。
我在网上搜索过,但我只找到了预览代码和拍照。
我想要做的事情的想法如下,但不幸的是它在Fragment中不起作用:
Ext.define('ListenerTesting.view.main.Main', {
extend: 'Ext.panel.Panel',
xtype: 'app-main',
requires: [
'Ext.MessageBox',
'Ext.layout.Fit'
],
controller: 'main',
viewModel: 'main',
tabBarPosition: 'left',
items: [{
xtype: 'button',
text: 'click me',
listeners: {
afterrender: function() {
Ext.Msg.alert("Success", "Message");
}
}
}]
});
xml代码如下:
Users can use the Spark-on-HBase connector as a standard Spark package. To include the package in your Spark application use:
Note: com.hortonworks:shc-core:1.1.1-2.1-s_2.11 has not been uploaded to spark-packages.org, but will be there soon.
spark-shell, pyspark, or spark-submit
$SPARK_HOME/bin/spark-shell --packages com.hortonworks:shc-core:1.1.1-2.1-s_2.11
Users can include the package as the dependency in your SBT file as well. The format is the spark-package-name:version in build.sbt file.
libraryDependencies += “com.hortonworks/shc-core:1.1.1-2.1-s_2.11”
我在扩展片段中的代码的初始部分如下:
onCreateView
您认为我可以做些什么来在surfaceview中进行连续的图像预览流程?