- 浏览: 389110 次
- 性别:
- 来自: 北京
-
最新评论
-
longxishui12:
这个一定要顶得高高的。
[Android UI界面] android中仿iphone实现listview的反弹效果 -
klower.jiang:
Good job, Thank you so much!
能够兼容ViewPager的ScrollView -
ZSRTFAT:
...
file size 的大小计算
文章列表
进度条
- 博客分类:
- android开发问题2
http://www.open-open.com/lib/view/open1329891315389.html
gti
- 博客分类:
- android开发问题2
git使用:
http://www.cnblogs.com/sorex/archive/2011/08/10/2132359.html
小米手机短信拦截转发失败原因
- 博客分类:
- android开发问题2
小米手机短信拦截转发失败原因,小米手机短信拦截转发失败原因
短信的设置里面有个“系统短信优先”,要把这个关闭才能你的程序才能正常监听到短信。
http://tompig.iteye.com/blog/1856672
权限大全
- 博客分类:
- android开发问题2
http://www.55zm.com/a/20130409/41387_3.html
彩信拦截功能的学习:
http://www.itivy.com/android/archive/2012/3/20/634678704212470654.html
http://www.2cto.com/kf/201204/127414.html
http://blog.csdn.net/agods/article/details/7456379
http://wenku.baidu.com/view/4fe2430c90c69ec3d5bb756c.html
删除恢复彩信:
http://bbs.csdn.net/topics/350100682
...
自定义progressbar
- 博客分类:
- android开发问题2
自定义不同背景的progressbar.
基本原理是在drawable目录中建立一个xml文件,描述一下背景图,内容如下:
Java代码
<?xml version="1.0" encoding="UTF-8"?>
<layer-list xmlns:android="[url=http://schemas.android.com/apk/res/android]http://schemas.android.com/apk/res/android[/url]">
& ...
在使用Notification显示progressbar的时候,
remoteViews.setViewVisibility(R.id.progressbar_id, View.VISIBLE);
这个用法是错误的。
android.widget.ProgressBar can't use method with RemoteViews: setVisibility(int)
解决办法:
关于通知栏有进度条的一个异常的处理:android.widget.RemoteViews$ActionException: view: android.widget.ProgressBar ca ...
按拼音排序
- 博客分类:
- android开发问题2
list to array
public class Test {
public static void main(String[] args) {
List<String> list=new ArrayList<String>();
list.add("王利虎");
list.add("张三");
list.add("李四");
int size=list.size();
String[] array = (String[])list.toArray(new Strin ...
iptables联网管理
- 博客分类:
- android开发问题2
http://bbs.hikemobile.com/thread-1644-1-1.html
http://5e76.net/show-2409.html
http://www.myexception.cn/open-source/429531.html
http://www.eoeandroid.com/thread-245052-1-1.html
http://blog.csdn.net/Zengyangtech/article/details/5579311
https://code.google.com/p/droidwall/
http://w ...
自定义dialog
- 博客分类:
- android开发问题2
自定义dialog
http://www.apkbus.com/android-95718-1-1.html
Failed to install Baidu.apk on device '0163B70A0D01F026': timeout的解决办法:
restar adb
获取手机信息
- 博客分类:
- android开发问题2
String phoneInfo = "Product: " + android.os.Build.PRODUCT;
phoneInfo += ", "+ "\n" + " + CPU_ABI: " + android.os.Build.CPU_ABI;
phoneInfo += ", "+ "\n" + " + TAGS: " + android.os.Build.TAGS;
p ...
查看CPU
- 博客分类:
- android开发问题2
http://bbs.xda.cn/forum-viewthread-tid-7549661-highlight.html
cmd 进入:
用命令:adb shell查看top
用命令:# top -m 4
//去除ListView滑到顶部和底部时边缘的黑色阴影:
android:fadingEdge="none"
//去除拖动时默认的黑色背景:
android:cacheColorHint="#00000000"
//去除选中时的黄色底色:
android:listSelector="#00000000"
//去除行与行之间的黑线:
msgList.setDivider(null);
//ListView刷新后自动滚到最底部:
msgList.setSelection(msgList.getAdapter( ...