コード例 #1
0
ファイル: JuceAppActivity.java プロジェクト: eriser/KentDAW
    public final void onResume() {
      for (int i = getChildCount(); --i >= 0; ) {
        View v = getChildAt(i);

        if (v instanceof OpenGLView) ((OpenGLView) v).onResume();
      }
    }
コード例 #2
0
ファイル: JuceAppActivity.java プロジェクト: eriser/KentDAW
  public final void deleteOpenGLView(OpenGLView view) {
    ViewGroup group = (ViewGroup) (view.getParent());

    if (group != null) group.removeView(view);
  }