private void setTitleText(CharSequence contentText) {
if(this.mTitleTextView != null && !contentText.equals("")) {
// THIS LINE SHOULD NOT EXIST
this.mContentTextView.setAlpha(0.5F);
this.mTitleTextView.setText(contentText);
}
}
Why this code sets the mContextTextView alpha to 0.5?
MaterialShowcaseView.Builder builder = new MaterialShowcaseView.Builder(activity);
builder.setTarget(view);
builder.setTitleText(titleResource);
builder.setContentText(detailResource);
builder.setContentTextColor(android.R.color.white);
builder.setDismissText(R.string.showcase_got_it);
builder.setDismissOnTouch(false);
builder.setDelay(Constants.SHOWCASE_SHOW_DELAY);
builder.setMaskColour(ContextCompat.getColor(activity, R.color.primary_showcase));
builder.singleUse(singleUseId);
Setting the content text color does not solve the problem...
Why this code sets the mContextTextView alpha to 0.5?
Setting the content text color does not solve the problem...