Có những trường hợp bạn muốn ứng dụng hiển thị một thông báo nhanh cho người dùng mà không cần phải chờ người dùng phản hồi. Ví dụ: khi người dùng thực hiện một thao tác như gửi email hoặc xoá tệp, ứng dụng của bạn sẽ hiển thị một thông báo xác nhận nhanh cho người dùng. Thông thường, người dùng không cần phản hồi thông báo. Thông báo cần đủ nổi bật để người dùng có thể nhìn thấy, nhưng không quá nổi bật khiến người dùng không thể thao tác với ứng dụng của bạn.
Android cung cấp tiện ích Snackbar cho trường hợp sử dụng phổ biến này. Snackbar cung cấp một thông báo bật lên nhanh cho người dùng. Hoạt động hiện tại vẫn hiển thị và có thể tương tác trong khi Snackbar đang hiển thị. Sau một khoảng thời gian ngắn, Snackbar sẽ tự động đóng.
Tài liệu này hướng dẫn bạn cách sử dụng Snackbar để hiển thị thông báo bật lên.
Hình 1.Snackbar hiển thị một thông báo ở cuối hoạt động và phần còn lại của hoạt động vẫn có thể sử dụng được.
Hãy tìm hiểu cách thêm một hành động vào tin nhắn để cho phép người dùng phản hồi
tin nhắn đó.
Nội dung và mã mẫu trên trang này phải tuân thủ các giấy phép như mô tả trong phần Giấy phép nội dung. Java và OpenJDK là nhãn hiệu hoặc nhãn hiệu đã đăng ký của Oracle và/hoặc đơn vị liên kết của Oracle.
Cập nhật lần gần đây nhất: 2025-07-26 UTC.
[[["Dễ hiểu","easyToUnderstand","thumb-up"],["Giúp tôi giải quyết được vấn đề","solvedMyProblem","thumb-up"],["Khác","otherUp","thumb-up"]],[["Thiếu thông tin tôi cần","missingTheInformationINeed","thumb-down"],["Quá phức tạp/quá nhiều bước","tooComplicatedTooManySteps","thumb-down"],["Đã lỗi thời","outOfDate","thumb-down"],["Vấn đề về bản dịch","translationIssue","thumb-down"],["Vấn đề về mẫu/mã","samplesCodeIssue","thumb-down"],["Khác","otherDown","thumb-down"]],["Cập nhật lần gần đây nhất: 2025-07-26 UTC."],[],[],null,["# Pop-up messages overview\n\nTry the Compose way \nJetpack Compose is the recommended UI toolkit for Android. Learn how to add notifications in Compose. \n[Snackbar →](/develop/ui/compose/components/snackbar) \n\nThere are situations where you might want your app to show a quick message to the user, without\nnecessarily waiting for the user to respond. For example, when a user performs an action like\nsending an email or deleting a file, your app shows a quick confirmation to the user. Often, the\nuser doesn't need to respond to the message. The message needs to be prominent enough that the user\ncan see it, but not so prominent that it prevents the user from working with your app.\n\nAndroid provides the\n[Snackbar](/reference/com/google/android/material/snackbar/Snackbar)\nwidget for this common use case. A `Snackbar` provides a quick pop-up message to the\nuser. The current activity remains visible and interactive while the `Snackbar` is\ndisplayed. After a short time, the `Snackbar` automatically dismisses itself.\n\nThis documentation shows you how to use `Snackbar` to show pop-up messages. \n\n\n**Figure 1.** A `Snackbar`\nshows a message at the bottom of the\nactivity, and the rest of the activity is still usable.\n| **Note:** The `Snackbar` class supersedes [Toast](/reference/android/widget/Toast). While `Toast` is supported, `Snackbar` is the preferred way to display brief, transient messages to the user.\n\nAdditional resources\n--------------------\n\n\n**[Build and display a pop-up message](/develop/ui/views/notifications/snackbar/showing)**\n:\n Learn how to use a `Snackbar` to display\n a brief message to the user.\n\n\n**[Add an action to a message](/develop/ui/views/notifications/snackbar/action)**\n:\n Learn how to add an action to a message, letting the user respond to\n the message."]]