解析一个Github上的项目ListViewFilter之三

代码解析

IndexBarView.java

该接口的设计目的主要是建立一个自定义View-屏幕左边的检索条。代码的解析如下:

public class IndexBarView extends View {

// index bar margin
//索引条周边留白的宽度
float mIndexbarMargin;

// user touched Y axis coordinate value
//用户触摸索引条的位置
float mSideIndexY;

// flag used in touch events manipulations
//是否正在索引的标志
boolean mIsIndexing = false;

// holds current section position selected by user

int mCurrentSectionPosition = -1;

// array list to store section positions

public ArrayList<Integer> mListSections;

// array list to store listView data

ArrayList<String> mListItems;

// paint object

Paint mIndexPaint;

// context object

Context mContext;

// interface object used as bridge between list view and index bar view for

// filtering list view content on touch event

IIndexBarFilter mIndexBarFilter;

public IndexBarView(Context context) {

super(context);

this.mContext = context;

}

public IndexBarView(Context context, AttributeSet attrs) {

super(context, attrs);

this.mContext = context;

}

public IndexBarView(Context context, AttributeSet attrs, int defStyle) {

super(context, attrs, defStyle);

this.mContext = context;

}

public void setData(PinnedHeaderListView listView, ArrayList<String> listItems,ArrayList<Integer> listSections) {

this.mListItems = listItems;

this.mListSections = listSections;

// list view implements mIndexBarFilter interface

mIndexBarFilter = listView;

// set index bar margin from resources

mIndexbarMargin = mContext.getResources().getDimension(R.dimen.index_bar_view_margin);

// index bar item color and text size

mIndexPaint = new Paint();

mIndexPaint.setColor(mContext.getResources().getColor(R.color.color_black));

mIndexPaint.setAntiAlias(true);

mIndexPaint.setTextSize(mContext.getResources().getDimension(R.dimen.index_bar_view_text_size));

}

//重写View的onDraw方法
// draw view content on canvas using paint

@Override

protected void onDraw(Canvas canvas) {

if (mListSections != null && mListSections.size() > 1) {

//索引条每个字母的占据的高度
float sectionHeight = (getMeasuredHeight() - 2 * mIndexbarMargin)/ mListSections.size();

//索引条字母离顶部边框的距离
float paddingTop = (sectionHeight - (mIndexPaint.descent() - mIndexPaint.ascent())) / 2;

for (int i = 0; i < mListSections.size(); i++) {

float paddingLeft = (getMeasuredWidth() - mIndexPaint.measureText(getSectionText(mListSections.get(i)))) / 2;

canvas.drawText(getSectionText(mListSections.get(i)),

paddingLeft,

mIndexbarMargin + (sectionHeight * i) + paddingTop + mIndexPaint.descent(),

mIndexPaint);

}

}

super.onDraw(canvas);

}

public String getSectionText(int sectionPosition) {

return mListItems.get(sectionPosition);

}

boolean contains(float x, float y) {

// Determine if the point is in index bar region, which includes the

// right margin of the bar

return (x >= getLeft() && y >= getTop() && y <= getTop() + getMeasuredHeight());

}

void filterListItem(float sideIndexY) {

mSideIndexY = sideIndexY;

// filter list items and get touched section position with in index bar

mCurrentSectionPosition = (int) (((mSideIndexY) - getTop() - mIndexbarMargin) /

((getMeasuredHeight() - (2 * mIndexbarMargin)) / mListSections.size()));

if (mCurrentSectionPosition >= 0 && mCurrentSectionPosition < mListSections.size()) {

int position = mListSections.get(mCurrentSectionPosition);

String previewText = mListItems.get(position);

mIndexBarFilter.filterList(mSideIndexY, position, previewText);

}

}

public boolean onTouchEvent(MotionEvent ev) {

switch (ev.getAction()) {

case MotionEvent.ACTION_DOWN:

// If down event occurs inside index bar region, start indexing

if (contains(ev.getX(), ev.getY())) {

// It demonstrates that the motion event started from index

// bar

mIsIndexing = true;

// Determine which section the point is in, and move the

// list to

// that section

filterListItem(ev.getY());

return true;

}

else {

mCurrentSectionPosition = -1;

return false;

}

case MotionEvent.ACTION_MOVE:

if (mIsIndexing) {

// If this event moves inside index bar

if (contains(ev.getX(), ev.getY())) {

// Determine which section the point is in, and move the

// list to that section

filterListItem(ev.getY());

return true;

}

else {

mCurrentSectionPosition = -1;

return false;

}

}

break;

case MotionEvent.ACTION_UP:

if (mIsIndexing) {

mIsIndexing = false;

mCurrentSectionPosition = -1;

}

break;

}

return false;

}

}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,456评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,370评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,337评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,583评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,596评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,572评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,936评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,595评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,850评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,601评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,685评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,371评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,951评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,934评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,167评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,636评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,411评论 2 342

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,397评论 25 707
  • ¥开启¥ 【iAPP实现进入界面执行逐一显】 〖2017-08-25 15:22:14〗 《//首先开一个线程,因...
    小菜c阅读 6,350评论 0 17
  • 小倩向我哭诉着交往了三年的男朋友因为出国要和她分手。他说他没时间,竟然连最后一面都不肯见我就走了。哪怕只见十分八分...
    半岛同学阅读 1,184评论 9 9
  • 女儿放下书包就出去了,说跟两个好友约好了去趟书城,七点左右就会回来。虽然知道她们可不是仅仅是去书城,她却并不会说什...
    安之若零阅读 638评论 11 5
  • 建造一所房子 就在我的竹林 让竹林的清风吹散过往的尘嚣 让竹林的雨露洗涤莫需的烦躁 将一颗宁静的心 放在属于我的这...
    一念牵心阅读 117评论 0 0