android
kfc_davy
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
相同class的startactivity使用Intent.FLAG_ACTIVITY_MULTIPLE_TASK
void android.content.Context.startActivity(Intent intent) Launch a new activity. You will not receive any information about when the activity exits. Note that if this method is being called from ...原创 2011-09-05 10:52:46 · 1048 阅读 · 0 评论 -
tabhost 按住的效果
m_tabHost.getTabWidget().getChildAt(i) .setBackgroundResource(R.drawable.selector_tab_background);原创 2012-02-13 14:34:32 · 113 阅读 · 0 评论 -
多线程下载
http://blog.youkuaiyun.com/wanglong0537/article/details/6411565 url connection con.setRequestProperty("Range", "bytes=" + startPosition + "-" + endPosition); file fos = new RandomAccessFile(file, "r...原创 2012-01-03 21:59:33 · 127 阅读 · 0 评论 -
(遗留问题)gallery 拖拉时候的抖动问题
拉不动,一拉就抖三抖 getview里面最好inflate一个view,抖动接解决了貌似原创 2011-08-07 17:43:52 · 103 阅读 · 0 评论 -
bitmap&bitmapdrawable的问题
[code="java"]BitmapDrawable localBitmapDrawable = new BitmapDrawable(paramBitmap);[/code] 原本的density [quote]paramBitmap240[/quote] 变成了 [quote]localBitmapDrawable 160[/quote] lookit [co...原创 2011-08-07 14:03:39 · 96 阅读 · 0 评论 -
Android /system下cp 或者rm
root权限下面 使用命令 mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system原创 2011-10-26 16:42:29 · 200 阅读 · 0 评论 -
Android PNG渐变背景图片失真问题
getWindow().setFormat(PixelFormat.RGBA_8888); see http://longshuai2007.blog.163.com/blog/static/14209441420117221117508/原创 2011-10-21 20:39:37 · 141 阅读 · 0 评论 -
[Android 問題] Make/Build Error: You are not using bash - builds will fail
If you meet this error when trying the build your android code: make: Entering directory `/bsp/Project_Name' build/core/main.mk:7: You are not using bash - builds will fail build/core/ma...原创 2011-10-09 09:58:59 · 116 阅读 · 0 评论 -
android ubuntu 认不出设备的问题
在/etc/udev/rules.d/目录下创建51-android.rules SUBSYSTEM=="usb", SYSFS{idVendor}=="19D2", MODE="0666" 就可以读出来设备原创 2011-10-05 08:48:19 · 123 阅读 · 0 评论 -
android static fields
不要用staticfields 说不定什么时候被回收了 - -b原创 2011-07-13 20:40:55 · 176 阅读 · 0 评论 -
android 字体&颜色
对于能够显示文字的控件(如TextView EditText RadioButton Button CheckBox Chronometer等等),你有时需要控制字体的大小。Android平台定义了三种字体大小。 java代码: "?android:attr/textAppearanceLarge" "?android:attr/textAppearanceMedium" "?...原创 2011-07-09 15:03:15 · 110 阅读 · 0 评论 -
android list中提示A B C 框
见 SectionIndexer原创 2011-07-08 19:59:39 · 218 阅读 · 0 评论 -
设置屏幕亮度的悲剧
[code="java"] WindowManager.LayoutParams localLayoutParams = getWindow().getAttributes(); System.out.println(localLayoutParams.screenBrightness); localLayoutParams.screenBright...原创 2011-09-21 18:28:09 · 118 阅读 · 0 评论 -
pendingintent的悲剧
PendingIntent.FLAG_UPDATE_CURRENT 遇到过的人都懂的!原创 2011-09-15 18:51:40 · 98 阅读 · 0 评论 -
android assert 自定义格式被压缩
asset如果自定义一个格式 那么会被压缩掉 出现 [code="java"] 04-05 16:35:32.121: E/E(13220): java.io.FileNotFoundException: This file can not be opened as a file descriptor; it is probably compressed [/code] [cod...原创 2012-04-05 16:42:09 · 256 阅读 · 0 评论
分享