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
PlaybackFragment playbackFragment = new PlaybackFragment(); ContextualFragment contextualFragment = null; FrameLayout contextual = findViewById(R.id.contextual); if (contextual != null) { contextualFragment = new ContextualFragment(); }
FragmentTransaction fragmentTransaction = getSupportFragmentManager().beginTransaction(); fragmentTransaction.replace(R.id.playback, playbackFragment); if (contextual != null) { fragmentTransaction.replace(R.id.contextual, contextualFragment); } fragmentTransaction.commitNow(); 找不到 PlaybackFragment
The text was updated successfully, but these errors were encountered:
No branches or pull requests
PlaybackFragment playbackFragment = new PlaybackFragment();
ContextualFragment contextualFragment = null;
FrameLayout contextual = findViewById(R.id.contextual);
if (contextual != null) {
contextualFragment = new ContextualFragment();
}
The text was updated successfully, but these errors were encountered: