I am brand new at android development. Sorry if I sound obtuse.
I want to write a pretty simple program that turns the flash LED on or off. So far what I have amounts to an import statement that looks like this.
import android.hardware.Camera.Parameters;
And I'm trying to create a parameters object like this.
Parameters flash = new Parameters(this);
Currently the error reads "Camera cannot be resolved to a type". What is the orrect way to create this object. I suspect I need to pass more/different data to the constructor. Again, new at this so please go easy.