<!--
Copyright 2011 Google Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the L...
分类:
移动开发 时间:
2014-05-22 08:41:44
阅读次数:
377
本次注重AndroidTestCase类的使用,在开发中非常实用。用于测试某一功能。
使用AndroidTestCase类,有如下的要求:
1.在AndroidManifest.xml文件中,中添加如下:...
分类:
移动开发 时间:
2014-05-22 08:13:23
阅读次数:
416
Android对于蓝牙开发从2.0版本的sdk才开始支持,而且模拟器不支持,测试至少需要两部手机,所以制约了很多技术人员的开发。
1. 首先,要操作蓝牙,先要在AndroidManifest.xml里加入权限 // 管理蓝牙设备的权限 // 使用蓝牙设备的权限 2.打开蓝牙获得蓝...
分类:
其他好文 时间:
2014-05-22 03:48:50
阅读次数:
372
我在学习Android的时候最头特的就是 测试!
虚拟机慢有不舒服,真机也是觉得很慢,因为要频繁的安装应用,所以Android
单元测试的使用就显得尤为重要了。想实现简单的单元测试不是很难,只要几步就可以完成了:首先要在清单文件(AndroidManifest.xml)下进行如下声明:
...
分类:
移动开发 时间:
2014-05-19 18:07:37
阅读次数:
352
//在Activity应用元素。
ActivityInfo info = this.getPackageManager()
.getActivityInfo(getComponentName(),PackageManager.GET_META_DATA);
info.metaData.getString("meta_name");
//在appli...
分类:
移动开发 时间:
2014-05-15 23:58:55
阅读次数:
798
Activity全屏设置方式1:AndroidManifest.xml方式2:代码实现requestWindowFeature(Window.FEATURE_NO_TITLE);//隐藏标题栏getWindow().setFlags(WindowManager.LayoutParams.FLAG_F...
分类:
移动开发 时间:
2014-05-15 10:43:09
阅读次数:
313
具体办法有两个:一、针对整个项目,所有页面都不显示标题栏可是就android的theme,即在android配置文件AndroidManifest.xml中,为application节点添加android:theme属性,其值为android:style/Theme.NoTitleBar,完整语句为:<applicationandroid:icon="@drawable/icon"and..
分类:
移动开发 时间:
2014-05-14 18:52:37
阅读次数:
386
代码如下:AndroidManifest.xml:在后面增加一行:Activity_main.xml:
MainActivity.java:packageleihu.location01;importandroid.location.Location;importandroid.location.L...
分类:
其他好文 时间:
2014-05-12 20:27:17
阅读次数:
374
HttpURLConnection conn = (HttpURLConnection)
url.openConnection(); InputStream inStream =
conn.getInputStream();//异常抛出在AndroidManifest.xml文件默认生成 删除...
分类:
移动开发 时间:
2014-05-12 13:19:13
阅读次数:
345
一个android apk的编译过程
请参考:http://www.2cto.com/kf/201312/261475.html典型的编译过程:aapt( Android Asset
Packaging Tool): 把你的应用程序资源文件(例如: AndroidManifest.xml file ...
分类:
移动开发 时间:
2014-05-12 08:21:55
阅读次数:
962