我启动了android模拟器,需要几分钟才能启动,过了一段时间,我得到了启动画面,然后我让整个模拟器运行了......
我可以用鼠标“滑动”解锁,它会显示时钟、3-4 个应用程序、主页按钮等。
但我需要它只显示hello world..它不需要。
I do get the following in the console
[2013-09-15 06:43:06 - AndrdLove] ------------------------------
[2013-09-15 06:43:06 - AndrdLove] Android Launch!
[2013-09-15 06:43:06 - AndrdLove] adb is running normally.
[2013-09-15 06:43:06 - AndrdLove] Performing com.example.andrdlove.FullscreenActivity activity launch
[2013-09-15 06:43:06 - AndrdLove] Automatic Target Mode: launching new emulator with compatible AVD 'standard'
[2013-09-15 06:43:06 - AndrdLove] Launching a new emulator with Virtual Device 'standard'
[2013-09-15 06:43:08 - AndrdLove] New emulator found: emulator-5554
[2013-09-15 06:43:08 - AndrdLove] Waiting for HOME ('android.process.acore') to be launched...
[2013-09-15 06:47:08 - AndrdLove] HOME is up on device 'emulator-5554'
[2013-09-15 06:47:08 - AndrdLove] Uploading AndrdLove.apk onto device 'emulator-5554'
[2013-09-15 06:47:08 - AndrdLove] Installing AndrdLove.apk...
[2013-09-15 06:48:34 - AndrdLove] Success!
[2013-09-15 06:48:34 - AndrdLove] Failed to install AndrdLove.apk on device 'emulator-5554': device not found
[2013-09-15 06:48:34 - AndrdLove] com.android.ddmlib.InstallException: device not found
[2013-09-15 06:48:34 - AndrdLove] Launch canceled!
编辑:请注意,这个问题不是重复的。
我的问题很少见,我无法使用谷歌找到简单的解决方案。我努力了。
为了更好地解释我的问题......我看到有人在启动 android 模拟器时遇到问题。那不是我的问题。模拟器启动...并进入主屏幕。在主屏幕上,有一个锁。当我滑动它时,它会打开模拟器,那里有 4 个应用程序。按预期工作对吗?对,只是我不想那样。我希望模拟器显示一个空的“Hello world”消息,就像我的教程建议的那样。
我终于弄明白了。
我所要做的就是去values
文件夹。双击strings.xml
,我可以添加或更改或保留字符串的值。但是,如果我希望它在我“解锁”手机时显示,我必须向上移动资源元素。我可以选择Add
Remove
Up
Down
. 我选择了hello_world(string)
元素并将其移至up
顶部。
转到启动图标,单击run configuration
选中Android application
,当弹出一个窗口时,它将有一个空的项目字段。该字段旁边是browse
按钮,单击它并选择您的应用程序项目名称。然后只需单击Run
。
呸。