原文地址:http://blog.csdn.net/jinzhuojun/article/details/8868038调试Android
Java源码草帽的后花园——Neo 写在之前的话:这里主要是以调试Java源码为主,应该说是在system_process之后的源码,这对于调试和修改fr...
分类:
移动开发 时间:
2014-06-09 18:52:22
阅读次数:
364
需求:viewpager显示图片,需要在双击时对图片进行缩放,单击时在屏幕下方弹出popwindow,由于android的双击本质就是两次单击,但是又不想在双击时触发单击时的动作,所以就在网上各种搜解决办法,未果,经过苦思冥想,发现以下办法1.重写activity的dispatchTouchEven...
分类:
移动开发 时间:
2014-06-08 00:22:45
阅读次数:
265
(参考官方文档:Using ViewPager for Screen Slides | Android
Developers)
分类:
移动开发 时间:
2014-06-06 20:51:19
阅读次数:
205
VBoxGuestAdditions.isovirtualbox主机和虚拟机之间怎样实现文件共享_百度知道http://zhidao.baidu.com/question/250530961.html?fr=qrl&index=0&qbl=topic_question_0&word=VBoxGues...
分类:
系统相关 时间:
2014-06-06 19:35:07
阅读次数:
300
1.复制新表结构及数据到新表create table 新表 select * from
旧表2.只复制表结构到新表create table 新表 select * from 旧表 where
1=23.复制旧表的数据到新表(假设两个表结构一样)insert into 新表 select * fr.....
分类:
数据库 时间:
2014-06-04 19:08:52
阅读次数:
280
【Animation Parameter】 Animation Parameters are
variables that are defined within the animation system but can also be accessed
and assigned values fr....
分类:
其他好文 时间:
2014-06-04 16:29:33
阅读次数:
304
设置动画的方案:我们可以使用ViewPager的setPageTransformer方法,为ViewPager设置动画。以下是几种常见动画的演示及效果:1.CubeInTransformer2.CubeOutTransformer23.FlipHorizontalTransformer4.RotateUpTransformer5.ZoomOutSlideTransformer6.TabletTra...
分类:
移动开发 时间:
2014-06-01 09:01:47
阅读次数:
372
1.修改PagerTabStrip中的背景颜色我们在布局中直接设置background属性即可: <android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="fill_parent"
android:layout_height="fill_paren...
分类:
移动开发 时间:
2014-05-31 23:42:11
阅读次数:
624
网上好多说法 但实际上说到点上的没有 不想写太长 直接进入正题Intent intent =
new
Intent(Intent.ACTION_VIEW);intent.addCategory(Intent.CATEGORY_DEFAULT);intent.setDataAndType(Uri.fr...
分类:
移动开发 时间:
2014-05-31 12:42:34
阅读次数:
283