Documentation Index
Fetch the complete documentation index at: https://mintlify.com/QmDeve/QmBlurView-Docs/llms.txt
Use this file to discover all available pages before exploring further.
BlurTitlebarView is a ready-to-use Android toolbar replacement that renders a real-time Gaussian blur behind its surface. Drop it at the top of any screen to give your app bar a frosted-glass appearance while keeping the content scrolling beneath it fully visible. It supports a primary title, an optional subtitle, a configurable back button, a menu action (icon or text), and a centered-title layout mode — all configurable via XML attributes or the programmatic API.
Usage
Attributes
| Attribute | Type | Description |
|---|---|---|
app:titleText | string | Primary title text displayed in the bar |
app:subtitleText | string | Secondary subtitle text displayed below the title |
app:titleTextColor | color | Color of the title text |
app:subtitleTextColor | color | Color of the subtitle text |
app:showBack | boolean | Whether to show the back navigation button |
app:backIcon | reference | Drawable resource used as the back button icon |
app:backIconTint | color | Tint color applied to the back button icon |
app:menuText | string | Text label for the menu action |
app:menuTextColor | color | Color of the menu action text |
app:menuIcon | reference | Drawable resource used as the menu action icon |
app:menuIconTint | color | Tint color applied to the menu action icon |
app:centerTitle | boolean | Whether to center the title and subtitle horizontally |
API Reference
| Method | Description |
|---|---|
setTitleText(String) | Set the primary title text |
setSubtitleText(String) | Set the subtitle text |
setTitleTextColor(int) | Set the color of the title text |
setSubtitleTextColor(int) | Set the color of the subtitle text |
setShowBack(boolean) | Show or hide the back navigation button |
setBackIcon(Drawable) | Set the back button icon from a Drawable |
setBackIconTint(int) | Set the tint color of the back button icon |
setMenuText(String) | Set the menu action label text |
setMenuTextColor(int) | Set the color of the menu action text |
setMenuIcon(Drawable) | Set the menu action icon from a Drawable |
setMenuIconTint(int) | Set the tint color of the menu action icon |
setCenterTitle(boolean) | Enable or disable centered title layout |