public GiCoreView coreView() { return mView != null ? mView.coreView() : null; }
public int cmdViewHandle() { final GiCoreView v = mView != null ? mView.coreView() : null; return v != null ? v.viewAdapterHandle() : 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); }