Blame view

src/com/squareup/timessquare/CalendarRowView.java 3.1 KB
3c2353cd   杜方   1、畅游通核销app源码提交;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
  // Copyright 2012 Square, Inc.
  package com.squareup.timessquare;
  
  import android.content.Context;
  import android.content.res.ColorStateList;
  import android.util.AttributeSet;
  import android.view.View;
  import android.view.ViewGroup;
  import android.widget.TextView;
  
  import static android.view.View.MeasureSpec.AT_MOST;
  import static android.view.View.MeasureSpec.EXACTLY;
  import static android.view.View.MeasureSpec.makeMeasureSpec;
  
  /** TableRow that draws a divider between each cell. To be used with {@link CalendarGridView}. */
  public class CalendarRowView extends ViewGroup implements View.OnClickListener {
    private boolean isHeaderRow;
    private MonthView.Listener listener;
    private int cellSize;
  
    public CalendarRowView(Context context, AttributeSet attrs) {
      super(context, attrs);
    }
  
    @Override public void addView(View child, int index, ViewGroup.LayoutParams params) {
      child.setOnClickListener(this);
      super.addView(child, index, params);
    }
  
    @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
      long start = System.currentTimeMillis();
      final int totalWidth = MeasureSpec.getSize(widthMeasureSpec);
      cellSize = totalWidth / 7;
      int cellWidthSpec = makeMeasureSpec(cellSize, EXACTLY);
      int cellHeightSpec = isHeaderRow ? makeMeasureSpec(cellSize, AT_MOST) : cellWidthSpec;
      int rowHeight = 0;
      for (int c = 0, numChildren = getChildCount(); c < numChildren; c++) {
        final View child = getChildAt(c);
        child.measure(cellWidthSpec, cellHeightSpec);
        // The row height is the height of the tallest cell.
        if (child.getMeasuredHeight() > rowHeight) {
          rowHeight = child.getMeasuredHeight();
        }
      }
      final int widthWithPadding = totalWidth + getPaddingLeft() + getPaddingRight();
      final int heightWithPadding = rowHeight + getPaddingTop() + getPaddingBottom();
      setMeasuredDimension(widthWithPadding, heightWithPadding);
    }
  
    @Override protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
      long start = System.currentTimeMillis();
      int cellHeight = bottom - top;
      for (int c = 0, numChildren = getChildCount(); c < numChildren; c++) {
        final View child = getChildAt(c);
        child.layout(c * cellSize, 0, (c + 1) * cellSize, cellHeight);
      }
    }
  
    public void setIsHeaderRow(boolean isHeaderRow) {
      this.isHeaderRow = isHeaderRow;
    }
  
    @Override public void onClick(View v) {
      // Header rows don't have a click listener
      if (listener != null) {
        listener.handleClick((MonthCellDescriptor) v.getTag());
      }
    }
  
    public void setListener(MonthView.Listener listener) {
      this.listener = listener;
    }
  
    public void setCellBackground(int resId) {
      for (int i = 0; i < getChildCount(); i++) {
        getChildAt(i).setBackgroundResource(resId);
      }
    }
  
    public void setCellTextColor(int resId) {
      for (int i = 0; i < getChildCount(); i++) {
        ((TextView) getChildAt(i)).setTextColor(resId);
      }
    }
  
    public void setCellTextColor(ColorStateList colors) {
      for (int i = 0; i < getChildCount(); i++) {
        ((TextView) getChildAt(i)).setTextColor(colors);
      }
    }
  }