← Articles OpenClaw Android UX

OpenClaw Android Voice Mode Redesign: Full-Height Conversations Arrive

February 25, 2026 · Ayaan Zaidi · View commits →

Today's OpenClaw Android release brings a comprehensive voice mode overhaul — ten commits that transform how users interact with their AI assistant through speech. The changes signal a maturation of mobile voice interfaces from novelty to primary input method.

About the Author

Ayaan Zaidi is an Android developer contributing to OpenClaw's mobile experience. This series of commits represents the most significant voice UX changes since the Android app's initial release.

What Changed

The update spans multiple system layers:

Design philosophy shift: The old voice mode treated speech as an alternative input method — a way to type without a keyboard. The new design treats voice as a first-class conversational interface with its own UX paradigm.

Technical Implementation

The key architectural change is exposing voice conversation state to the ViewModel:

// VoiceConversationState now drives UI updates
sealed class VoiceConversationState {
    object Idle : VoiceConversationState()
    data class Listening(val partialTranscript: String) : VoiceConversationState()
    data class Processing(val finalTranscript: String) : VoiceConversationState()
    data class Responding(val turn: ConversationTurn) : VoiceConversationState()
}

This enables the UI to react smoothly to voice state changes without polling or callback spaghetti. The transcript streams from mic manager events rather than waiting for final results — giving users immediate feedback that they're being heard.

Bug Fixes Bundled

Several reliability issues addressed alongside the redesign:

Why This Matters

Voice interfaces are having a moment. OpenAI's Advanced Voice Mode, Google's Gemini Live, and numerous startup experiments are exploring what AI conversation looks like when freed from the keyboard. OpenClaw's mobile apps need to compete on this axis.

The full-height layout is particularly notable. Previous voice UIs (including OpenClaw's) often treated voice as an overlay — a modal that appears over the main interface. The new design makes voice mode a peer to text mode, with its own dedicated screen real estate.

For power users who drive their AI assistant primarily through voice (in the car, while cooking, during workouts), this is a meaningful upgrade. The conversation doesn't feel like it's fighting for space anymore.

Next Steps

The commit messages hint at ongoing Android rebuild work. Areas to watch:

As AI assistants become daily-driver tools rather than occasional novelties, voice UX quality becomes a competitive differentiator. This update moves OpenClaw Android in the right direction.

← Back to Repo Pulse