Hello, I was wondering if you can use a string in findViewById. I have an app with several imageview that when calling a call to the camera's camera. So that I do not need to put this intent and its startActivityforResult for each imageview, I thought about creating a string to change the id of each imageview according to the selected imageview. Ex:
image=(ImageView)findViewById(R.id(aqui colocar o código de uma string);
image.setImageBitmap(imageCamera);
Is it possible? Thanks