@Override
 public void onCreate(Bundle savedInstanceState) {
   super.onCreate(savedInstanceState);
   this.onSetContentView();
   LayoutFactory.setContext(this);
   ViewFactory.setContext(this);
   this.main();
 }
 public void addMainLayout(LayoutType pLayoutType) {
   mView = LayoutFactory.getLayout(pLayoutType);
   setContentView(mView);
 }