Slides displayed are semi-transparent
See original GitHub issueI tried implementing both Simple Slide and even Custom Slide. I both cases, the displayed Slide appears semi-transparent. Here is the image for Reference.

There is nothing different from your Code
public class TourActivity extends MaterialIntroActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
enableLastSlideAlphaExitTransition(true);
addSlide(new TourOneFragment());
}
@Override
public void onFinish() {
super.onFinish();
startActivity(new Intent(this, MainActivity.class));
}
}
Am I missing something?
Regards
Issue Analytics
- State:
- Created 7 years ago
- Reactions:1
- Comments:7 (3 by maintainers)
Top Results From Across the Web
Google Slides Tutorial: Changing the Transparency of a Shape
Click to Subscribe: http://bit.ly/19vzAMH It's possible to create a transparent shape by adjusting its colour preset! … Show more. Show more ...
Read more >How to make a shape semi transparent in Google Slides
How to make a semi transparent text box in google slides · Select the text box. · Open the Fill Color tool from...
Read more >Semi-transparent background for Google presentation text box
Yup, you can set the background color to be semi-transparent. Use the custom color option, it gives you the ability to set transparency....
Read more >Transparency for Shape Fills in PowerPoint 2010 for Windows
To do that, select each stop of your gradient, and change its transparency, as shown highlighted in red within Figure 5, below. Set...
Read more >Create a soft look with semi-transparent images in PowerPoint
For a soft look; To overlap images; To let text show through ... Normally, I would create a slide like this one…
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

Fixed in https://github.com/TangoAgency/material-intro-screen/pull/72/files
I’m seeing this too, even with a background color explicitly set using
SlideFragmentBuilder().backgroundColor().It is also worth noting that this only happens when I have a single slide. For two or more slides, it works fine.