Exemplo n.º 1
0
 public GiCoreView coreView() {
   return mView != null ? mView.coreView() : null;
 }
Exemplo n.º 2
0
 public int cmdViewHandle() {
   final GiCoreView v = mView != null ? mView.coreView() : null;
   return v != null ? v.viewAdapterHandle() : 0;
 }
Exemplo n.º 3
0
 public void createDummyView(Context context, int width, int height) {
   final StdGraphView view = new StdGraphView(context, (BaseGraphView) null);
   view.layout(0, 0, width, height);
   mView = view;
   mView.coreView().onSize(BaseViewAdapter.getMainAdapter(mView), width, height);
 }