1

我有一个 GLSurfaceView,它有一个纹理,当我点击一个按钮时我需要更改它。我怎么能在安卓上做到这一点。我通过以下方式管理了一些东西:

            Intent intent = getIntent();
            finish();
            startActivity(intent);

但我只需要刷新openGL而不是整个程序

4

1 回答 1

1

不是刷新视图的方法。您需要使用该invalidate功能。

更多:

  1. http://developer.android.com/reference/android/view/View.html#Drawing

  2. android 上的 openGL

  3. openGL 教程编号 1

  4. openGL 教程编号 2

于 2012-06-26T07:22:09.490 回答