Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 GLSurfaceView,它有一个纹理,当我点击一个按钮时我需要更改它。我怎么能在安卓上做到这一点。我通过以下方式管理了一些东西:
Intent intent = getIntent(); finish(); startActivity(intent);
但我只需要刷新openGL而不是整个程序
这不是刷新视图的方法。您需要使用该invalidate功能。
invalidate
更多:
http://developer.android.com/reference/android/view/View.html#Drawing
android 上的 openGL。
openGL 教程编号 1。
openGL 教程编号 2。