apk打包工 eclipse用法

来源:互联网 发布:代码审查工具 java 编辑:程序博客网 时间:2024/05/20 00:52

①显示工具条
window->show toolbar





②恢复视图
window -> reset perspective






③使用android sdk manager 更新sdk
直接连接google,配置镜像服务器
推荐网址:Android SDK在线更新镜像服务器





④创建虚拟设备
android virtual device manager


配置3个东西:1、起名字 2、选设备 4寸 3、指定sd大小 512M


































eclipse Webpage not available



<application android:icon="@drawable/icon" android:label="@string/app_name">    <activity android:name=".AndroidTestActivity"              android:label="@string/app_name">        <intent-filter>            <action android:name="android.intent.action.MAIN" />            <category android:name="android.intent.category.LAUNCHER" />        </intent-filter>        <uses-permission android:name="android.permission.INTERNET" />  //AndroidManifest.xml增加这句话    </activity>     </application></manifest>

原创粉丝点击