2012年11月1日
摘要: 部分重要代码 public class lvButtonAdapter extends BaseAdapter { private class ButtonViewHolder { TextView tv_Number;TextView tv_otheruser;ImageButton bt_challenge;int position; } private int mButtonClickPosition; private ArrayList<HashMap<String, Object>> mAppList; private LayoutInflater mInfl 阅读全文
posted @ 2012-11-01 17:57 Code大蛇丸 阅读(1136) 评论(0) 推荐(0)
摘要: Android动画背景图自动播放的实现我们在开发android应用的时候,经常会遇到类似从网络加载大图,在加载的过程中,在图片要显示的ImageView位置,先显示一个转圈的loading动画图,给用户的体验会更好一些,要实现这个动画图很简单,使用在/res/anim中定义xml的方式,通常使用…. 来实现。 例如:<?xml version="1.0" encoding="utf-8"?><animation-list android:oneshot="false"xmlns:android="http: 阅读全文
posted @ 2012-11-01 15:45 Code大蛇丸 阅读(8141) 评论(0) 推荐(1)