I have the following function: createEl(View view, ....)
I have to go to the same View function I'm using in the:
setContentView(R.layout.activity_main)
.
I tried with:
View view = (View) getLayoutInflater().Inflate (R.layout.activity_main, null);
But it does not work. How can I do?