2012年7月30日

摘要: 简单记录O(∩_∩)O~新建anim目录,并新建实现旋转的动画文件roraterepeat.xml<?xml version="1.0" encoding="utf-8"?><set xmlns:android="http://schemas.android.com/apk/res/android" > <rotate android:duration="1000" android:fromDegrees="0" android:interpolator=" 阅读全文
posted @ 2012-07-30 16:53 YoVinci 阅读(3417) 评论(1) 推荐(1) 编辑
 
摘要: /** * 不规则"图形按钮控件" * */public class TrapezoidImageButton extends ImageButton { public TrapezoidImageButton(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); } public TrapezoidImageButton(Context context, AttributeSet attrs) { super(context, attrs); ... 阅读全文
posted @ 2012-07-30 16:04 YoVinci 阅读(2305) 评论(0) 推荐(0) 编辑
 
摘要: public void startActivity(Intent intent, int animationEnterId, int animationLeaveId) { Activity activity = this; activity = TinyUtils.getRootActivity(this); if (activity == this) { super.startActivity(intent); } else { activity.startActivity(intent); } try { ... 阅读全文
posted @ 2012-07-30 11:23 YoVinci 阅读(215) 评论(0) 推荐(0) 编辑