At the moment the ActivityBuilder class only accepts a String in the setActivityTitle() method. Ideally this would be a CharSequence. It's more "correct" since ActionBar.setTitle() accepts a CharSequence. Moreover, it would allow for more flexibility in theming the CropImageActivity. Some applications (such as my own) have a custom font so this would convenient in cases like those (and any other cases where users want to apply spans to an activity title).
At the moment the
ActivityBuilderclass only accepts aStringin thesetActivityTitle()method. Ideally this would be aCharSequence. It's more "correct" sinceActionBar.setTitle()accepts aCharSequence. Moreover, it would allow for more flexibility in theming theCropImageActivity. Some applications (such as my own) have a custom font so this would convenient in cases like those (and any other cases where users want to apply spans to an activity title).