INNER CODE UNIT · Java
onOptionsItemSelected
githubhaohao/NDK_OpenGLES_3_0 · app/src/main/java/com/byteflow/app/MainActivity.java:278
public boolean onOptionsItemSelected(MenuItem item) {
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_change_sample) {
showGLSampleDialog();
}
return true;
}
@Override
public void onAudioBufferCallback(short[] buffer) {
//Log.e(TAG, "onAudioBufferCallback() called with: buffer[0] = [" + buffer[0] + "]");
mGLRender.setAudioData(buffer);
//mGLSurfaceView.requestRender();
}
@Override