android 自定义view画表格,【Android开发笔记】自定义表格控件 - TableView/TableLayout...

win.smartown.android.library.tableLayout.TableColumn

这个类表示表格中的一列,比较关键的点在于根据填充到此列的数据来确定此列的宽度

1.根据填充内容确定一个单元格(TextView)显示这些文本要占用的宽度:

// 计算出该TextView中文字的长度(像素)

public static float measureTextViewWidth(TextView textView, String text) {

// 得到使用该paint写上text的时候,像素为多少

return textView.getPaint().measureText(text);

}

2.遍历此列中所有的单元格,得到最大单元格的宽度maxTextViewWidth ,将其作为此列的宽度

private void initContent() {

int padding = callback.getTableLayout().getTableColumnPadding();

maxTextViewWidth = 0;

ArrayList textViews = new ArrayList<>();

for (String text : content) {

TextView textView = new TextView(getContext());

textView.setTextSize(TypedValue.COMPLEX_UNIT_PX, callback.getTableLayout().getTableTextSize());

textView.setTextColor(callback.getTableLayout().getTableTextColor());

maxTextViewWidth = Math.max(maxTextViewWidth, Util.measureTextViewWidth(textView, text));

textView.setGravity(getTextGravity(callback.getTableLayout().getTableTextGravity()));

textView.setPadding(padding, 0, padding, 0);

textView.setText(text);

textViews.add(textView);

}

LayoutParams layoutParams = new LayoutParams((int) (padding * 2 + maxTextViewWidth), callback.getTableLayout().getTableRowHeight());

for (TextView textView : textViews) {

addView(textView, layoutParams);

}

}

@Override

protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {

super.onMeasure(widthMeasureSpec, heightMeasureSpec);

setMeasuredDimension((int) (callback.getTableLayout().getTableColumnPadding() * 2 + maxTextViewWidth), callback.getTableLayout().getTableRowHeight() * getChildCount());

}

win.smartown.android.library.tableLayout.TableLayout

TableLayout就是最终呈现的完整表格,实际上他就是多个TableColumn的组合,其主要负责整个表格的大小测量、分割线绘制和接受数据填充。

1.单元格大小测量

@Override

protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {

super.onMeasure(widthMeasureSpec, heightMeasureSpec);

int width = 0;

int height = 0;

int childCount = getChildCount();

for (int i = 0; i < childCount; i++) {

View child = getChildAt(i);

width += child.getMeasuredWidth();

height = Math.max(height, child.getMeasuredHeight());

}

setMeasuredDimension(width, height);

}

2.绘制分割线

在ViewGroup要重写onDraw(),需要设置setWillNotDraw(false),否者onDown()中的绘制不会生效,具体的分割线绘制参见TableLayout源码的onDraw();

3.数据的填充

public void setAdapter(TableAdapter adapter) {

this.adapter = adapter;

useAdapter();

}

//设置adapter后,先清空原来的数据,然后根据新数据添加TableColumn

private void useAdapter() {

removeAllViews();

int count = adapter.getColumnCount();

for (int i = 0; i < count; i++) {

addView(new TableColumn(getContext(), adapter.getColumnContent(i), this));

}

}

win.smartown.android.library.tableLayout.FreeScrollView

顾名思义,此类用来实现子View的自用滚动,当子view大小超过FreeScrollView的大小,就可以拖动显示超出的内容

1.处理滚动

@Override from GestureDetector (重写GestureDetector 的onScroll())

public boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY) {

View view = getChildAt(0);

int childHeight = view.getHeight();

int childWidth = view.getWidth();

int toX, toY;

if (distanceX > 0) {

if (childWidth > getWidth()) {

if (getScrollX() + getWidth() >= childWidth) {

toX = childWidth - getWidth();

} else {

toX = (int) (getScrollX() + distanceX);

}

} else {

toX = 0;

}

} else {

if (getScrollX() + distanceX < 0) {

toX = 0;

} else {

toX = (int) (getScrollX() + distanceX);

}

}

if (distanceY > 0) {

if (childHeight > getHeight()) {

if (getScrollY() + getHeight() >= childHeight) {

toY = childHeight - getHeight();

} else {

toY = (int) (getScrollY() + distanceY);

}

} else {

toY = 0;

}

} else {

if (getScrollY() + distanceY < 0) {

toY = 0;

} else {

toY = (int) (getScrollY() + distanceY);

}

}

scrollTo(toX, toY);

return false;

}

2.处理点击事件,达到选中效果

//由于FreeScrollView拦截了TouchEvent,所以要在FreeScrollView处理点击事件,

//通过计算坐标来定位点击的是哪个单元格,点击处理顺序:

//FreeScrollView.onSingleTapUp() -> TableLayout.onClick() -> TableLayout.onClick() -> TableColumn.onClick()

@Override from GestureDetector

public boolean onSingleTapUp(MotionEvent e) {

View view = getChildAt(0);

if (view instanceof TableLayout) {

((TableLayout) view).onClick(e.getX() + getScrollX(), e.getY() + getScrollY());

}

return false;

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值