• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

ColorPicker: A `ColorPicker` for Android. Pick a color using color wheel and sli ...

原作者: [db:作者] 来自: 网络 收藏 邀请

开源软件名称:

ColorPicker

开源软件地址:

https://gitee.com/duanhong169/ColorPicker

开源软件介绍:

ColorPicker gitHub release platform license

A ColorPicker for Android. Pick a color using color wheel and slider (HSV & alpha).

Gradle

dependencies {    implementation 'com.github.duanhong169:colorpicker:${latestVersion}'    ...}

Replace ${latestVersion} with the latest version code. See releases.

Usage

Using ColorPickerPopup

new ColorPickerPopup.Builder(this)        .initialColor(Color.RED) // Set initial color        .enableAlpha(true) // Enable alpha slider or not        .okTitle("Choose")        .cancelTitle("Cancel")        .showIndicator(true)        .showValue(true)        .build()        .show(v, new ColorPickerPopup.ColorPickerObserver() {            @Override            public void onColorPicked(int color) {                v.setBackgroundColor(color);            }            @Override            public void onColor(int color, boolean fromUser) {            }        });

Using ColorPickerView

  • Add ColorPickerView into your layout xml:
<top.defaults.view.ColorPickerView    android:id="@+id/colorPicker"    android:layout_width="0dp"    android:layout_height="wrap_content"    app:enableAlpha="true"    app:layout_constraintLeft_toLeftOf="parent"    app:layout_constraintRight_toRightOf="parent"    app:layout_constraintTop_toTopOf="parent"/>

See top_defaults_view_color_picker_attrs.xml for all supported attributes.

  • Implement ColorObserver and subscribe to ColorPickerView to receive color updates from the ColorPickerView:
colorPickerView.subscribe((color, fromUser) -> {    // use the color});
  • Set initial color:
colorPickerView.setInitialColor(0x7F313C93);
  • Reset to initial color:
colorPickerView.reset();

See a complete usage in the app sample code.

License

See the LICENSE file.


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap