Sử dụng bộ sưu tập để sắp xếp ngăn nắp các trang
Lưu và phân loại nội dung dựa trên lựa chọn ưu tiên của bạn.
Dịch vụ trò chơi của Play có thể tự động thêm lối tắt ứng dụng, ví dụ: cho phép người dùng nhanh chóng chọn hồ sơ Dịch vụ trò chơi của Play để sử dụng.
Bạn có thể thêm hoặc xoá lối tắt ứng dụng dựa trên số lượng tài khoản trên thiết bị và mức sử dụng trò chơi.
Các phím tắt có sẵn
Trình chuyển đổi hồ sơ: lối tắt để người chơi chuyển đổi giữa các Hồ sơ Play Games. Hãy xem bài viết Cách chuyển đổi hồ sơ Play Games trong Trung tâm trợ giúp.
Quản lý lối tắt ứng dụng được điền sẵn trong Dịch vụ trò chơi của Play
Trong trường hợp trò chơi của bạn chủ động sử dụng lối tắt ứng dụng, bạn có thể giới hạn số lượng lối tắt ứng dụng do dịch vụ Play Games điền sẵn. Để làm việc đó, hãy thêm phần tử siêu dữ liệu vào bất kỳ phần khai báo hoạt động "android.intent.category.LAUNCHER" nào, thiết lập như sau:
android:name đến "com.google.android.gms.games.APP_SHORTCUTS_MAX_NUMBER"
android:value thành số lượng tối đa của các khe lối tắt ứng dụng mà dịch vụ Play Games có thể sử dụng.
Ví dụ
Trong ví dụ này, chúng tôi sẽ hướng dẫn cách giới hạn số lượng tối đa của các ô lối tắt ứng dụng mà dịch vụ Play Games có thể sử dụng ở mức 2. Đối với ví dụ này, ban đầu chúng ta sẽ có một tệp kê khai ứng dụng như sau:
Vậy là xong. Giờ đây, số lượng tối đa của các khe lối tắt ứng dụng mà dịch vụ Play Games có thể sử dụng bị giới hạn ở mức 2.
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,["# App shortcuts\n\nThe Play Games services may automatically add [app shortcuts](https://developer.android.com/develop/ui/views/launch/shortcuts), for\nexample to allow users to quickly choose the Play Games Services profile to use.\nThe app shortcuts could be added or removed based on the number of the accounts\non the device and the game usage.\n\nAvailable shortcuts\n-------------------\n\n**Profile switcher** : shortcut for players to switch between different Play\nGames Profiles. See [How to switch Play Games profiles](https://support.google.com/googleplay/answer/14754238), for\ncorresponding Help Center article.\n\nManage the Play Games services populated app shortcuts\n------------------------------------------------------\n\nIn case your game actively uses the app shortcuts, you could limit the number of\napp shortcuts populated by the Play Games services. For that add a\n[meta-data](https://developer.android.com/guide/topics/manifest/meta-data-element)\nelement to any `\"android.intent.category.LAUNCHER\"` activity declaration,\nsetting the following:\n\n- `android:name` to `\"com.google.android.gms.games.APP_SHORTCUTS_MAX_NUMBER\"`\n- `android:value` to the maximum number of the app shortcuts slots that can be used by the Play Games services.\n\n### Example\n\nIn this example, we show how to limit the maximum number of the app shortcuts\nslots that the Play Games services can use to **two** . For our example, we\ninitially would have an\n[app manifest](https://developer.android.com/guide/topics/manifest/manifest-intro)\nthat looks like the following: \n\n \u003cmanifest ... \u003e\n \u003capplication ... \u003e\n \u003cactivity android:name=\".ExampleActivity\" \u003e\n \u003cintent-filter\u003e\n \u003caction android:name=\"android.intent.action.MAIN\" /\u003e\n \u003ccategory android:name=\"android.intent.category.LAUNCHER\" /\u003e\n \u003c/intent-filter\u003e\n \u003c/activity \u003e\n ...\n \u003c/application \u003e\n ...\n \u003c/manifest \u003e\n\nAnd to apply the limits the app manifest should be updated to the following: \n\n \u003cmanifest ... \u003e\n \u003capplication ... \u003e\n \u003cactivity android:name=\".ExampleActivity\" \u003e\n \u003cintent-filter\u003e\n \u003caction android:name=\"android.intent.action.MAIN\" /\u003e\n \u003ccategory android:name=\"android.intent.category.LAUNCHER\" /\u003e\n \u003c/intent-filter\u003e\n \u003cmeta-data\n android:name=\"com.google.android.gms.games.APP_SHORTCUTS_MAX_NUMBER\"\n android:value=\"2\" /\u003e\n \u003c/activity \u003e\n ...\n \u003c/application \u003e\n ...\n \u003c/manifest \u003e\n\nThat's it. Now the maximum number of the app shortcuts slots that the Play Games\nservices can use is limited to **two**."]]