電臺復活節_如何玩Android 11的隱藏復活節彩蛋游戲

電臺復活節

電臺復活節

android 11 easter egg
Justin Duino
賈斯汀·杜伊諾(Justin Duino)

Google includes a hidden “Easter Egg” with each new Android version. Android 11 has one of the more elaborate Easter Eggs as it’s actually a game you can play. We’ll show you how to find it and play.

Google在每個新的Android版本中都包含一個隱藏的“復活節彩蛋”。 Android 11具有更精美的復活節彩蛋之一,因為它實際上是您可以玩的游戲。 我們將向您展示如何找到它并玩。

The Android 11 Easter Egg game is a reboot of the game?included with Android 7.0 Nougat. It’s all about attracting virtual cats to your phone and collecting them. The idea sounds strange, but it’s pretty addictive.

Android 11 Easter Egg游戲是Android 7.0 Nougat隨附游戲的重新啟動。 這一切都是為了吸引虛擬貓到您的手機并收集它們。 這個主意聽起來很奇怪,但是很容易上癮。

The first step is to find the Easter Egg and enable the game. On your Android phone or tablet running Android 11,?swipe down from the top of the screen (once or twice, depending on your device’s manufacturer) and then select the “Gear” icon to open the “Settings” menu.

第一步是找到復活節彩蛋并啟用游戲。 在運行Android 11的Android手機或平板電腦上,從屏幕頂部向下滑動(一次或兩次,具體取決于設備的制造商),然后選擇“齒輪”圖標以打開“設置”菜單。

android settings menu

Next, scroll all the way down, and tap “About Phone.”

接下來,一直向下滾動,然后點擊“關于手機”。

select about phone

From there, select “Android Version.”

從那里選擇“ Android版本”。

select android version

Lastly, tap “Android Version” repeatedly until you’re brought to what looks like a volume dial.

最后,反復點按“ Android版本”,直到進入類似于音量調節盤的狀態。

tap android version repeatedly

This is the Android 11 Easter Egg, but it’s only the beginning. To start the cat-collecting game, you must move?the dial from 1 to 10 three times. On the third attempt, it will go past 10 and reveal the “11” logo.

這是Android 11復活節彩蛋,但這僅僅是個開始。 要開始收集貓的游戲,您必須將撥盤從1移至10 3次。 第三次嘗試時,它將超過10并顯示“ 11”徽標。

android 11 easter egg

After the “11” logo appears, you’ll see a cat emoji in a toast notification at the bottom of your screen. This means the game has been enabled.

出現“ 11”徽標后,您會在屏幕底部的吐司通知中看到貓表情符號。 這意味著游戲已啟用。

cat game enabled

The goal of the game is to collect cats. You do this by filling virtual water and food bowls and playing with cat toys. To get started, press and hold down your phone or tablet’s physical “Power” button. Tap the three-dot menu icon.

游戲的目的是收集貓。 為此,您可以填充虛擬的水和食物碗并玩貓玩具。 首先,請按住手機或平板電腦的物理“電源”按鈕。 點擊三點菜單圖標。

power menu settings

Next, select “Add Controls” from the menu.

接下來,從菜單中選擇“添加控件”。

select add controls

Tap “See Other Apps” at the bottom of the screen.

點擊屏幕底部的“查看其他應用程序”。

select see other apps

The one we want here is “Cat Controls.”

我們在這里想要的是“貓控制”。

choose cat controls

Check the box for all three controls to add them to your Power menu. Then tap “Save.”

選中所有三個控件的框,將其添加到“電源”菜單中。 然后點擊“保存”。

select cat control buttons

Back in the Power Menu, if “Cat Controls” aren’t showing, tap the down arrow and select it.

返回電源菜單,如果未顯示“ Cat Controls”,請點擊向下箭頭并選擇它。

cat controls from power menu

Now you can tap the buttons to fill the water bubbler, add food to the bowl, or play with the toy. Once you do these things, it’s just a matter of waiting for a cat to appear in your notifications.

現在,您可以點擊按鈕以填充注水器,向碗中添加食物或玩玩具。 完成這些操作后,只需等待貓出現在通知中即可。

cat appears

Tap on the notification when it appears and you’ll be brought to your collection of cats. Select any of the cats to rename them.

點擊通知出現時,您將被帶到貓集合中。 選擇任何一只貓來重命名它們。

rename the cats

That’s all there is to the game! It’s a simple little background activity that will occasionally surprise you with a cat. Just make sure to keep the water and food full and play with the toy.

這就是游戲的全部內容! 這是一個簡單的小背景活動,偶爾會給貓咪一個驚喜。 只需確保保持水和食物充滿并玩玩具即可。

翻譯自: https://www.howtogeek.com/690597/how-to-play-the-android-11-easter-egg-game/

電臺復活節

本文來自互聯網用戶投稿,該文觀點僅代表作者本人,不代表本站立場。本站僅提供信息存儲空間服務,不擁有所有權,不承擔相關法律責任。
如若轉載,請注明出處:http://www.pswp.cn/news/278155.shtml
繁體地址,請注明出處:http://hk.pswp.cn/news/278155.shtml
英文地址,請注明出處:http://en.pswp.cn/news/278155.shtml

如若內容造成侵權/違法違規/事實不符,請聯系多彩編程網進行投訴反饋email:809451989@qq.com,一經查實,立即刪除!

相關文章

AQS源碼閱讀筆記(一)

AQS源碼閱讀筆記 先看下這個類張非常重要的一個靜態內部類Node。如下: static final class Node {//表示當前節點以共享模式等待鎖static final Node SHARED new Node();//表示當前模式以獨占模式等待鎖static final Node EXCLUSIVE null;//表示當前線程等待鎖的動…

python之實現從ftp下載文件到本地

#!/usr/bin/python # codingutf-8 import os from ftplib import FTP # 引入ftp模塊class MyFtp:ftp FTP()def __init__(self,host,port21):self.ftp.connect(host,port)def login(self,username,pwd):self.ftp.set_debuglevel(2) # 打開調試級別2,顯示詳細信息s…

如何在Instagram上過濾冒犯性評論

Shubham AgarwalShubham AgarwalIf you have a public Instagram profile, chances are you’ve been a victim of inappropriate comments from strangers. Given the social network’s vast size, it’s practically impossible to escape such bad actors. Thankfully, Ins…

復雜性思維中文第二版 附錄 A、算法分析

附錄 A、算法分析 原文:Appendix A Analysis of algorithms 譯者:飛龍 協議:CC BY-NC-SA 4.0 自豪地采用谷歌翻譯 部分參考了《Think Python 2e 中譯本 第二十一章:算法分析》 算法分析 (Analysis of algorithms) 是計算機科學的一…

如何在Windows 8.1中獲取Windows 10樣式的開始菜單

On January 21, Microsoft officially announced the new features that would be included in Windows 10. While you’ll have to wait for the release to enjoy most of the new features, you can take advantage of the new Windows 10 Start menu today. 1月21日&#x…

Android工程中javax annotation Nullable找不到的替代方案

我們在某些Android開源庫中會遇到下面的引用找不到的問題:import javax.annotation.Nonnull;import javax.annotation.Nullable; 其實Android實現了javax的類似注解,可以使用下面的引用替換:import android.support.annotation.NonNull;impor…

HDU1561:The more, The Better——題解

http://acm.hdu.edu.cn/showproblem.php?pid1561 ACboy很喜歡玩一種戰略游戲,在一個地圖上,有N座城堡,每座城堡都有一定的寶物,在每次游戲中ACboy允許攻克M個城堡并獲得里面的寶物。但由于地理位置原因,有些城堡不能直…

ubuntu列出所有磁盤_列出Ubuntu上的磁盤空間使用情況

ubuntu列出所有磁盤Simply open a new Terminal window and type in this command 只需打開一個新的終端窗口并輸入此命令 df -Th f翻譯自: https://www.howtogeek.com/howto/ubuntu/list-disk-space-usage-on-ubuntu/ubuntu列出所有磁盤

python基礎之字符編碼

閱讀目錄 一 了解字符編碼的知識儲備二 字符編碼介紹三 字符編碼應用之文件編輯器3.1 文本編輯器之nodpad3.2 文本編輯器之pycharm3.3 文本編輯器之python解釋器3.4 總結四 字符編碼應用之python4.1 執行python程序的三個階段4.2 python2與python3字符串類型的區別一 了解字符編…

C# WinForm開發系列 - DataGridView

1.DataGridView實現課程表 testcontrol.rar 2.DataGridView二維表頭及單元格合并 DataGridView單元格合并和二維表頭.rar myMultiColHeaderDgv.rar 3.DataGridView單元格顯示GIF圖片 gifanimationindatagrid.rar 4.自定義顯示DataGridView列(行頭顯示行號與圖標,同一單元格顯示…

ruby語法_Ruby函數(方法)語法

ruby語法The Ruby language makes it easy to create functions. Ruby語言使創建函數變得容易。 Function Syntax 功能語法 def functionname(variable) return <value>end def functionname(variable)return <值>結束Examples 例子 Your function can compute …

011-git-將tag推送到遠端

1、將tag推送到遠端 在使用TortoiseGit過程中&#xff0c;push推送過程中&#xff0c;選擇include tag&#xff0c;遠端就有次分支。

pageadmin CMS網站建設教程:站點添加自定義字段

首先看看pagedmin默認的站點設置都有什么&#xff0c;如下圖&#xff1a; 這里只有一些最基本的參數設置&#xff0c;用過3.0版本或用過其他公司開發的cms的用戶應該有這種體驗&#xff0c;在站點設置中可以設置logo圖片&#xff0c;備案號&#xff0c;底部內容等等。 那么為什…

如何將世界時鐘和時區小部件添加到您的iPhone

When you work remotely or have friends and family who live in another country, it’s important to know what time it is across time zones. A world clock (or time zone) widget on your iPhone’s Home screen makes this much easier. 當您遠程工作或有家人和朋友居…

Python網絡爬蟲之三種數據解析方式

引入 回顧requests實現數據爬取的流程 指定url基于requests模塊發起請求獲取響應對象中的數據進行持久化存儲其實&#xff0c;在上述流程中還需要較為重要的一步&#xff0c;就是在持久化存儲之前需要進行指定數據解析。因為大多數情況下的需求&#xff0c;我們都會指定去使用聚…

一行代碼實現底部導航欄TabLayout

歡迎關注公眾號&#xff1a;JueCode app中底部導航欄已經是很常見的控件了&#xff0c;比如微信&#xff0c;簡書&#xff0c;QQ等都有這類控件&#xff0c;都是點擊底部標簽切換界面。主要的實現手段有 RadioGroupFragmentTabLayoutTabLayoutBottom Navigation其中TabLayout一…

小程序視頻截gif_3個簡單的應用程序,可讓您深入視頻和GIF

小程序視頻截gifDeepfakes make it possible to manipulate videos and GIFs. The technology has become so easy to use, you can now create deepfakes right on your phone. That’s right—you can now easily insert yourself into a meme. 借助Deepfake &#xff0c;可以…

【AtCoder】ARC095 E - Symmetric Grid 模擬

【題目】E - Symmetric Grid 【題意】給定n*m的小寫字母矩陣&#xff0c;求是否能通過若干行互換和列互換使得矩陣中心對稱。n,m<12。 【算法】模擬 【題解】首先行列操作獨立&#xff0c;如果已確定行操作&#xff0c;那么兩個在對稱位置的列要滿足條件必須其中一列反轉后和…

一、內存尋址

1.內存地址分類: 邏輯地址、線性地址、物理地址 邏輯地址:段選擇符偏移量 線性地址:C語言中取地址符&打印出來的地址就是這個地址&#xff0c;也叫虛擬地址。 物理地址:內存總線尋址的具體地址&#xff0c;是真實存在的。 邏輯地址通過分段單元轉換成線性地址&#xff0c;線…

如何使用Google TV設置Chromecast

Justin Duino賈斯汀杜伊諾(Justin Duino)Google changed up its streaming platform with the release of the Chromecast with Google TV. Instead of being a Cast-only device like Chromecasts before it, Google’s latest dongle runs the successor of Android TV. If y…