Android
went0213
这个作者很懒,什么都没留下…
展开
-
如何禁止Gridview上下滑动?
因为android没有提供直接禁止Gridview滑动的API,也没有提供相应的属性来在XML布局文件中直接禁止滑动,当我们做菜单时要禁止Gridview上下滑动怎么办呢?1、自定义一个Gridview2、通过重新dispatchTouchEvent方法来禁止滑动public class GrapeGridview extends GridView {public Grap原创 2014-07-30 10:38:41 · 1383 阅读 · 0 评论 -
Android 编译错误:/usr/bin/ld: cannot find -luuid,/usr/bin/ld: cannot find -llzo2
在64位ubuntu 12.04 下编译 Android 系统源码会出现下列错误: /usr/bin/ld: cannot find -luuid /usr/bin/ld: cannot find -llzo2判断是缺少对应的库,尝试使用以下命令修复: sudo apt-get install uuid uuid-dev sudo apt-get install libl原创 2015-04-07 10:39:28 · 930 阅读 · 0 评论 -
在 Android Studio 中修改包名所遇到的坑
在Android Studio中修改包名的注意事项原创 2015-04-13 17:38:58 · 1502 阅读 · 0 评论 -
Android 在 service 中实现后台录像
Background video recording in Android原创 2015-04-09 10:51:56 · 9461 阅读 · 3 评论 -
如何让两个 TextView 在 RelativeLayout 中水平居中显示
stormzhang 的博客有一篇Tencent Interview 其中有个问题是 如何让两个 TextView 在 RelativeLayout 中水平居中显示,第一反应是用一个LinearLayout 包装它们。今天我想了另一种方法,布局文件如下:<RelativeLayout xmlns:android="http://schemas.android.com/a原创 2015-03-20 10:07:04 · 18964 阅读 · 5 评论