Android 开发中运行 ActivityCreator.bat
2010-02-22 03:55:00 来源:WEB开发网ActivityCreator.bat文件应当在Android SDK的…/tools/文件目录下。大多数“前向”命令行工具都放置在工具目录的根目录下。“前向”工具是依次呼叫在工具根目录下更深目录的工具。 ActivityCreator.bat是工具根目录下一个示例的工具,它运行时会呼叫另外一个工具。使用vi,Notepad或者一个文本编辑器,打开 ActivityCreator.bat。它应当包含下面的代码:
注意
ActivityCreator.bat是定义为Microsoft Windows版本的Android SDK。在本章的后面部分,你将会学习ActivityVreator.py。这个是Linux版本的ActivityCreator。
@echo off
rem Copyright (C) 2007 Google Inc.
rem
rem Licensed under the Apache License, Version 2.0 (the "License");
rem you may not use this file except in compliance with the License.
rem You may obtain a copy of the License at
rem
rem http://www.apache.org/licenses/LICENSE-2.0
rem
rem Unless required by applicable law or agreed to in writing, software
rem distributed under the License is distributed on an "AS IS" BASIS,
rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
rem See the License for the specific language governing permissions and
rem limitations under the License.
rem don't modify the caller's environment
setlocal
"%~dp0libactivityCreatoractivityCreator.exe" %*
浏览整个的rem声明(批处理文件注释声明),你会看到在文件的底部有一个实用的代码。ActivityCreator.bat被用来呼叫…/tools /lib/activitycreator/目录里的ActivityCreator.exe。这个ActivityCreator.bat是一个工具的示例,它只是放置在SDK其它工具的前端。
所以,ActivityCreator.bat(或者ActivityCreator.exe)做了什么?ActivityCreator被用来建立指向在哪里需要开始开发你的应用程序初始文件的开发环境。这个路径结构和在第五章第五章(1)程序:Hello World!讨论过的结构一致。ActivityCreator.bat 创建 R.java, AndroidManifest.xml, 和所有你应用程序需要的支持文件。
让我们现在转到命令行环境并且浏览ActivityCreator。在开始菜单,点击运行,在运行的对话框内输入
- ››Android 当修改一些代码时,使用什么编译命令可以最...
- ››Android 如何添加一个apk使模拟器和真机都编译进去...
- ››Android 修改Camera拍照的默认保存路径
- ››Android 如何修改默认输入法
- ››android开发中finish()和System.exit(0)的区别
- ››Android手势识别简单封装类
- ››android中查看项目数字证书的两种方法
- ››Android中获取IMEI码的办法
- ››android 相机报错 setParameters failed
- ››Android重启运用程序的代码
- ››Android为ListView的Item设置不同的布局
- ››android bitmap与base64字符串的互相转换
更多精彩
赞助商链接