android
ajun495175289
这个作者很懒,什么都没留下…
展开
-
android中去掉标题栏和状态栏,实现全屏
<br /> this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉标题栏<br /> this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,<br /> WindowManager.LayoutParams.FLAG_FULLSCREEN);//去掉信息栏原创 2010-06-23 09:29:00 · 693 阅读 · 0 评论 -
android 摇一摇 传感器实例详解
package com.example.testcamera;import android.content.Context;import android.hardware.Sensor;import android.hardware.SensorEvent;import android.hardware.SensorEventListener;import androi原创 2013-06-25 21:58:50 · 1155 阅读 · 0 评论 -
android平台下SAX,dom,pull解析方式比较
1.Android中三种XML的解析方式,分别为Dom,Sax,Pull,其中Pull的解析方式最优2.Dom,Sax,Pull解析方式的区别(1).Dom解析方式:首先一下子加载整个文档然后再挨个节点解析优点:对于处理大文档,以及能力强的CPU性能比较快缺点:对于处理能力不够强的CPU一下子可能受不了,就像一个人一口先吃下一个大西瓜,再来嚼.(2).Sax解析方式:S原创 2013-06-08 19:28:37 · 1270 阅读 · 0 评论 -
android webview 复制文本
/** * Select Text in the webview and automatically sends the selected text to the clipboard. */ public void swithToSelectAndCopyTextMode() { try { KeyEvent shiftPre原创 2013-06-08 22:23:39 · 1219 阅读 · 1 评论 -
android TextView,EditText插入表情
效果图如下:EditText和TextView中插入表情//插入的表情 editText = (EditText) findViewById(R.id.editText); editText.setText("设置图片:"); //设置光标位置,是为了下面的在插入时插入表情时在字串的后面, editText.setSel原创 2013-06-13 22:11:19 · 1382 阅读 · 0 评论 -
android ListView中通过号码查询图片,名字分条显示
android ListView中通过号码查询图片,名字分条显示由于每个item查询Contacts数据库如果单独开Thread非常耗资源,还容易卡顿,而且还容易产生显示错乱,所以要采用线程池,现在采用AsyncTask,它是与线程池 + Handler的结合 体 核心 代码如下: 通过号码查询联系人实时显示图片 public class PhotoLoader原创 2013-06-13 22:18:52 · 725 阅读 · 0 评论 -
android webview 销毁
android webview 调用webview类中的销毁方法并不能完全销毁webview对象,只能销毁webviewCore中的一些线程,源码中的销毁方法如下: /** * Destroy the internal state of the WebView. This method should be called * after the WebView has b原创 2013-06-02 16:24:58 · 3914 阅读 · 0 评论 -
android webview 复制文本
/** * Select Text in the webview and automatically sends the selected text to the clipboard. */ public void swithToSelectAndCopyTextMode() { try { KeyEvent shiftPre原创 2013-06-02 16:23:20 · 1056 阅读 · 0 评论 -
android 起动APP时锁住(Lock apps)
android手机管家锁住其它APP,发现有点流氓,后台一个线程在不停的运行大致的核心代码如下:起时在service中启动这个类,但做测试为图个方便直接在Activity中启动package com.example.testsafe;import android.content.Context;import android.content.pm.ApplicationInf原创 2013-06-02 16:02:42 · 1258 阅读 · 0 评论 -
解决R.java文件丢失
<br />第1种方法:右击工程->选择Android Tools->选择Fix Project Properties 这样应该OK!<br />第2种方法:右击工程->选择Properties->选择 Android->Apply这样也应该OK<br /> <br />第一种方法我测试时是不成功的,用第二种方法生成了R.java但是还报错,这时把上面导入的那个android.R那个包去掉,因为那样一导包它就找错路径了原创 2010-06-23 11:24:00 · 649 阅读 · 0 评论 -
android--SDK1.5与2.0的区别之一
在1.5与2.0中public boolean onKeyDown(int keyCode, KeyEvent event)这个方法,即返回的方法,1.5中return super.onKeyDown(keyCode, event);直接把当前的activity结束了,而2.0中不是。如下例子2.0中: @Override public boolean onKeyDown(int keyCode, KeyEvent event) { // 用户点击手机键盘上的返回键 if原创 2010-06-22 14:11:00 · 873 阅读 · 1 评论 -
svn下下来的项目,项目名报错
svn下下来的项目,项目名报错<br />svn下下来的项目,项目名报错时这是因为在.classpath文件中有 <classpathentry exported="true" kind="lib" path="WidgetEngine20.jar"/>这样一句话,在SVN中有这个jar包,但在自己的开发工具上没这个jar包,这时只要在这个文件中删除这句话就行了。原创 2010-06-23 09:28:00 · 635 阅读 · 0 评论 -
No package identifier when getting value for resource
No package identifier when getting value for resource出现这种情况一般是在解析XML文件时方法用错了,比如说:input_City_EditText = (EditText) findViewById(R.id.EditView_Input);读取文本框的内容。但这样写就会报 No package identifier when getting value for resource错:input_City_EditText =原创 2010-06-22 14:12:00 · 1158 阅读 · 0 评论 -
Invalid file name: must contain only [a-z0-9_.]
Invalid file name: must contain only [a-z0-9_.]文件名必须是小写a到z,和下划线以及数字0到9原创 2010-06-22 14:09:00 · 1555 阅读 · 0 评论 -
获取SD卡的剩余空间
/** * 获取SD卡的剩余空间 * * @return SD卡的剩余的字节数 */ public static long getFreeSD() { long nAvailableCount = 0l; StatFs stat = new StatFs(Environment.getExternalStorageDirectory() .getAbsolute原创 2010-06-22 17:47:00 · 773 阅读 · 0 评论 -
android拼接多张bitmap图片
/*** 横向拼接* * @param first* @param second* @return */private Bitmap add2Bitmap(Bitmap first, Bitmap second) {int width = first.getWidth() + second.getWidth();int height = Math.max(fir原创 2014-01-10 19:08:47 · 10782 阅读 · 3 评论