2012年9月12日

摘要: CauseThis error occurs for three reasons:Incorrect Alias usedIncorrect Keystore usedIncorrect Certificate usedResolutionTo resolve this issueCheck :1. The original alias of the original keystore that was used to generate the csr must be used2. The original keystore used to generate the CSR must be u 阅读全文
posted @ 2012-09-12 00:10 YoVinci 阅读(2783) 评论(0) 推荐(0) 编辑

2012年8月15日

摘要: 首先将Table View拖到View窗口,将数据源和委托连接旁边的圆圈拖到File's Owner图标,这样,控制类就成为这张表的数据源和委托了。视图控制器的头文件代码如下:#import <UIKit/UIKit.h>//让类遵从UITableViewDelegate和UITableViewDataSource两个协议,充当表视图的委托和数据源@interface SZLViewController : UIViewController <UITableViewDelegate, UITableViewDataSource>{ //声明一个数组用于放置将要显 阅读全文
posted @ 2012-08-15 12:30 YoVinci 阅读(206) 评论(0) 推荐(0) 编辑

2012年7月31日

摘要: public class Employee { private String id;// 雇员的标识号码 private String name;// 雇员姓名 private String department;// 该雇员所在部门 private String Phone;// 该雇员联系电话 private int salary;// 该雇员薪资 private String origin;// 该雇员信息的来源 // 构造方法 p... 阅读全文
posted @ 2012-07-31 14:33 YoVinci 阅读(343) 评论(0) 推荐(0) 编辑

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) 编辑

2012年7月2日

摘要: 效果:有两个Activity分别为A和B,从A中采用Bundle封装数据向B中传递数据,然后使用startActivityForResult在B中修改后回传数据。第一个Activity的layout如main.xml: 1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:orientation="vertica 阅读全文
posted @ 2012-07-02 00:06 YoVinci 阅读(389) 评论(0) 推荐(0) 编辑

2012年6月27日

摘要: 时间每次都会跟白驹过隙这个词勾搭上,生命有多少个1年呢。如果我运气够好可以活到100岁的话,我也就只有那么76年挥霍。除却70岁至100岁的30年老得不能动的年代,剩下46年可以自由活动。46年?!挺长的吧!不过回首过去23年的时间跨度,怎一个快字了得,再想想接下来就要理所当然降临的第2个23年,也就是说我只有2个23年了。 理想化的结果总是会给人一种欣慰,在理想中加入一些添加剂呢?数据来源准确的话,时至公元2012年,中国的人均寿命中男性71岁,女性74岁,暂且不说为什么男性总是比女性死得早,也死得其所,如果我赶得上潮流的话,那么我可以自主发挥的时间是17年!在这度年如日的时代,谁都可... 阅读全文
posted @ 2012-06-27 14:42 YoVinci 阅读(248) 评论(0) 推荐(1) 编辑

2012年6月14日

摘要: 先呈上我测试动画的界面:布局文件main.xml为:<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertica 阅读全文
posted @ 2012-06-14 17:32 YoVinci 阅读(927) 评论(1) 推荐(0) 编辑
 
摘要: 我好像总是对控件情有独钟的O(∩_∩)O,近来就打算写写Android基础控件的使用,希望可以从中挖掘一些新的东西。这次的例子是从EditText中输入文字,然后在TextView中同步显示,实现实时输入输出。关键就是用OnKeyListener监听EditText的键盘输入事件。例子比较简单,直接上代码。main.xml布局:<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res 阅读全文
posted @ 2012-06-14 15:24 YoVinci 阅读(4171) 评论(5) 推荐(0) 编辑