摘要:
一、基本概念// 上下文对象private Context context;public FileService(Context context){super();this.context = context;}// 保存文件方法public void save(String filename, String fileContent) throws Exception{FileOutputStream fos = context.openFileOutput(filename, context.MODE_PRIVATE);fos.write(fileContent.getBytes(" 阅读全文
摘要:
一、错误级别Error > Warn > Info > Debug > Verbose(冗余)二、Android项目日志查看视图Console视图只能看项目的部署到模拟器上的信息,开发日志信息只能在LogCat视图上看。在LogCat视图上有按钮可以进行错误级别的筛选。比如点击Info按钮,会显示错误级别大于等于Info级别的日志信息。三、输出日志信息private final String tag = "xyLog";public void testLog1() throws Exception{String myname = "xy&q 阅读全文
摘要:
一、创建普通Android项目二、在AndroidManifest.xml添加两个配置引入测试相关类库配置单元测试框架启动装置三、编写测试代码package cn.xy.test;import junit.framework.Assert;import android.test.AndroidTestCase;import cn.xy.service.PersonService;public class TestClass extends AndroidTestCase{public void testSave() throws Exception{PersonService ps = new 阅读全文
摘要:
一、发现问题用户在执行一些如拨打电话、发送短信等关系用户隐私的功能时,Android需要出示权限,权限在AndroidManifest.xml中配置拨打电话的权限发送短信的权限那么这些权限信息如何得到呢?二、解决问题答案在Android的开发文档中。android-sdk-windows——>docs——>index.html——>references——>ANDROID——>Manifest.permission列出了很多字符串,你可以根据需要查找。http://blog.sina.com.cn/s/blog_67aaf44401015tbh.html 阅读全文