android wheel样式,andorid-wheel 样式[转载]

Backgrounds

Main widget background

Center (current item) background

Top and bottom shadows

and_wheel_bg.JPG

控件

Main Background

Main background consists of two parts: the gradient bevel and the gradient background.

It's easy to create that, just find necessary colors. Not that the best way it to combine them by using layers that are described here.

--从中可以知道,你必须学会layer-list和shape的知识,知道是怎么一回事,进行控制,来改变样式。

android:startColor="#333"

android:centerColor="#DDD"

android:endColor="#333"

android:angle="90" />

android:startColor="#AAA"

android:centerColor="#FFF"

android:endColor="#AAA"

android:angle="90" />

Just set it as a widget background by calling setBackgroundResource().

Center background

Center background is used to mark the current item value and widget label. It is also defined in XML and is a little transparent.

android:startColor="#70222222"

android:centerColor="#70222222"

android:endColor="#70EEEEEE"

android:angle="90" />

Just draw it on center of our widget:--在WheelView.java中设置的遮罩选中的子项的部分。

/**

* Draws rect for current value

* @param canvas the canvas for drawing

*/

private void drawCenterRect(Canvas canvas) {

int center = getHeight() / 2;

int offset = getHeight() / visibleItems / 2;

centerDrawable.setBounds(0, center - offset, getWidth(), center + offset);

centerDrawable.draw(canvas);

}

Top and bottom shadows--设置阴影

The main background (see above) does not make widget to look so nice (like the original iPhone widget) because it is not enough dark on top and bottom. So, I decided to draw additional gradient drawable to get shadow effect:

/** Top and bottom shadows colors */

private static final int[] SHADOWS_COLORS = new int[] { 0xFF111111,

0x00AAAAAA, 0x00AAAAAA };

/**

* Draws shadows on top and bottom of control

* @param canvas the canvas for drawing

*/

private void drawShadows(Canvas canvas) {

if (topShadow == null) {

topShadow = new GradientDrawable(Orientation.TOP_BOTTOM, SHADOWS_COLORS);

}

topShadow.setBounds(0, 0, getWidth(), getHeight() / visibleItems);

topShadow.draw(canvas);

if (bottomShadow == null) {

bottomShadow = new GradientDrawable(Orientation.BOTTOM_TOP, SHADOWS_COLORS);

}

bottomShadow.setBounds(0, getHeight() - getHeight() / visibleItems,

getWidth(), getHeight());

bottomShadow.draw(canvas);

}

onDraw()

So, all drawable are defined, and we can draw the Wheel control. We need to draw text layouts and all defined above drawables excluding the widget background.

@Override

protected void onDraw(Canvas canvas) {

super.onDraw(canvas);

if (itemsLayout == null) {

calculateLayoutWidth(getWidth(), MeasureSpec.EXACTLY);

}

drawCenterRect(canvas);

canvas.save();

// Skip padding space and hide a part of top and bottom items

canvas.translate(PADDING, -ITEM_OFFSET);

drawItems(canvas);

drawValue(canvas);

canvas.restore();

drawShadows(canvas);

}

/**

* Draws value and label layout

* @param canvas the canvas for drawing

*/

private void drawValue(Canvas canvas) {

valuePaint.setColor(VALUE_TEXT_COLOR);

valuePaint.drawableState = getDrawableState();

Rect bounds = new Rect();

itemsLayout.getLineBounds(visibleItems / 2, bounds);

// draw label

if (labelLayout != null) {

canvas.save();

canvas.translate(itemsLayout.getWidth() + LABEL_OFFSET, bounds.top);

labelLayout.draw(canvas);

canvas.restore();

}

// draw current value

canvas.save();

canvas.translate(0, bounds.top);

valueLayout.draw(canvas);

canvas.restore();

}

/**

* Draws items

* @param canvas the canvas for drawing

*/

private void drawItems(Canvas canvas) {

itemsPaint.setColor(ITEMS_TEXT_COLOR);

itemsPaint.drawableState = getDrawableState();

itemsLayout.draw(canvas);

}

Note that to draw StaticLayout it needs to "move" it to necessary position by using Canvas.translate() method.

在这里,我再次看到了drawValue这个方法,之前谷歌搜索资料的时候,我也是看过的,但是我从github中找到的android-wheel,却没有找到这个方法,我怀疑这个项目不是最新,但是没有找到其他的源码地址。

Notes

The first part of Wheel UI control implementation has been done.

What is not implemented yet? Of course, rotation - the main behavior of this widget. I'll describe it in next post.

原文链接

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值