Please, help. How to install an object of class Picture

 public class Picture extends View{ public Picture (Context c) { super(c); } /*...*/ } 

as a source of markup. Activity:

 setContentView(); 

How to do it?

    1 answer 1

     setContentView(new Picture(YourActivity.this));