🚀 Getting Started
The Visual Studio 2026 IDE Tour
Solution Explorer, XAML editor, Logcat, Android Device Manager.

The Main IDE Windows

Knowing where everything lives in Visual Studio 2026 will save you hours each week. Here are the panels you'll use daily when building Android apps.

Solution Explorer

View → Solution Explorer. This is your project file tree. Key locations:

XAML Designer with Split View

Opening any .xaml file shows a split view: the XAML editor on the left and a live preview on the right. XAML Hot Reload automatically updates the preview as you type.

🔥
Hot Reload also updates the running emulator in real time — just save the file. No recompile, no restart.

Android Device Manager

Tools → Android → Android Device Manager. Use it to:

Logcat Output

View → Other Windows → Android Device Log. Streams real-time logs from your emulator or physical device. Filter by tag or severity to zero in on your app's output.

csharp
// Log from C# code
Android.Util.Log.Debug("MyApp", "Page loaded");
Android.Util.Log.Error("MyApp", $"Error: {ex.Message}");

Debugger

Click any gutter line to set a breakpoint. Press F5. When the breakpoint hits, the app pauses. Hover any variable to inspect its value, or use the Immediate Window to evaluate expressions on the fly.

Key Takeaways

Solution Explorer shows the full project tree — know your key files
XAML Hot Reload updates the running emulator instantly on save
Android Device Manager creates and manages emulator instances
Logcat streams real-time device logs for debugging
Lesson 4 of 30Getting Started
← Previous Next Lesson →