We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For 2 and 3 I use currently some solution via reflection (just to show you what I would suggest to be available without reflection):
fensterSimpleVideoController.post(new Runnable() { @Override public void run() { try { Class<?> c = fensterSimpleVideoController.getClass(); Field mProgress = c.getDeclaredField("mProgress"); mProgress.setAccessible(true); SeekBar seekbar = (SeekBar) mProgress.get(fensterSimpleVideoController); ThemeManager.get().themeSeekbar(seekbar); Field mNextButton = c.getDeclaredField("mNextButton"); Field mPrevButton = c.getDeclaredField("mPrevButton"); mNextButton.setAccessible(true); mPrevButton.setAccessible(true); ((View) mNextButton.get(fensterSimpleVideoController)).setVisibility(View.GONE); ((View) mPrevButton.get(fensterSimpleVideoController)).setVisibility(View.GONE); } catch (IllegalAccessException e) { } catch (NoSuchFieldException e) { } } });
The text was updated successfully, but these errors were encountered:
Would you accept a pull request? I would have some small other changes as wel...
Sorry, something went wrong.
No branches or pull requests
For 2 and 3 I use currently some solution via reflection (just to show you what I would suggest to be available without reflection):
The text was updated successfully, but these errors were encountered: