同步操作将从 Android轮子哥/ShapeView 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
博客介绍:震惊,没想到 Shape 也可以这么写
可以扫码下载 Demo 进行演示或者测试,如果扫码下载不了的,点击此处可直接下载
7.0 以下
,需要在 build.gradle
文件中加入allprojects {
repositories {
// JitPack 远程仓库:https://jitpack.io
maven { url 'https://jitpack.io' }
}
}
7.0 及以上
,则需要在 settings.gradle
文件中加入dependencyResolutionManagement {
repositories {
// JitPack 远程仓库:https://jitpack.io
maven { url 'https://jitpack.io' }
}
}
build.gradle
文件中加入远程依赖android {
// 支持 JDK 1.8
compileOptions {
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
// Shape 框架:https://github.com/getActivity/ShapeView
implementation 'com.github.getActivity:ShapeView:8.0'
}
gradle.properties
文件中加入# 表示将第三方库迁移到 AndroidX
android.enableJetifier = true
ShapeButton shapeButton = findViewById(R.id.btn_main_test);
shapeButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
shapeButton.getShapeDrawableBuilder()
.setSolidColor(0xFF000000)
.setStrokeColor(0xFF5A8DDF)
// 最后需要调用一下 into 方法才能生效
.intoBackground();
shapeButton.getTextColorBuilder()
.setTextColor(0xFFFFFFFF)
// 最后需要调用一下 into 方法才能生效
.intoTextColor();
shapeButton.setText("颜色已经改变啦");
}
});
<resources>
<!-- Shape 形状(默认是矩形) -->
<attr name="shape">
<!-- 矩形 -->
<enum name="rectangle" value="0" />
<!-- 椭圆形 -->
<enum name="oval" value="1" />
<!-- 线条 -->
<enum name="line" value="2" />
<!-- 圆环 -->
<enum name="ring" value="3" />
</attr>
<!-- Shape 宽度 -->
<attr name="shape_width" format="dimension" />
<!-- Shape 高度 -->
<attr name="shape_height" format="dimension" />
<!-- 填充色(默认状态) -->
<attr name="shape_solidColor" format="color" />
<!-- 填充色(按下状态) -->
<attr name="shape_solidPressedColor" format="color" />
<!-- 填充色(选中状态) -->
<attr name="shape_solidCheckedColor" format="color" />
<!-- 填充色(禁用状态) -->
<attr name="shape_solidDisabledColor" format="color" />
<!-- 填充色(焦点状态) -->
<attr name="shape_solidFocusedColor" format="color" />
<!-- 填充色(选择状态) -->
<attr name="shape_solidSelectedColor" format="color" />
<!-- 圆角大小 -->
<attr name="shape_radius" format="dimension" />
<!-- 左上角的圆角大小 -->
<attr name="shape_topLeftRadius" format="dimension" />
<!-- 右上角的圆角大小 -->
<attr name="shape_topRightRadius" format="dimension" />
<!-- 左下角的圆角大小 -->
<attr name="shape_bottomLeftRadius" format="dimension" />
<!-- 右下角的圆角大小 -->
<attr name="shape_bottomRightRadius" format="dimension" />
<!-- 渐变色起始颜色 -->
<attr name="shape_startColor" format="color" />
<!-- 渐变色中间颜色(可不设置) -->
<attr name="shape_centerColor" format="color" />
<!-- 渐变色结束颜色 -->
<attr name="shape_endColor" format="color" />
<!-- 边框渐变色起始颜色 -->
<attr name="shape_strokeStartColor" format="color" />
<!-- 边框渐变色中间颜色(可不设置) -->
<attr name="shape_strokeCenterColor" format="color" />
<!-- 边框渐变色结束颜色 -->
<attr name="shape_strokeEndColor" format="color" />
<!-- 是否将用于缩放渐变 -->
<attr name="shape_useLevel" format="boolean" />
<!-- 渐变角度(仅用于线性渐变。必须是 0-315 范围内的值,并且是 45 的倍数) -->
<attr name="shape_angle" format="float" />
<!-- 渐变类型(默认类型是线性渐变) -->
<attr name="shape_gradientType">
<!-- 线性渐变 -->
<enum name="linear" value="0" />
<!-- 径向渐变 -->
<enum name="radial" value="1" />
<!-- 扫描渐变 -->
<enum name="sweep" value="2" />
</attr>
<!-- 渐变中心 X 点坐标的相对位置(默认值为 0.5)-->
<attr name="shape_centerX" format="float|fraction" />
<!-- 渐变中心 Y 点坐标的相对位置(默认值为 0.5)-->
<attr name="shape_centerY" format="float|fraction" />
<!-- 渐变色半径(仅用于径向渐变) -->
<attr name="shape_gradientRadius" format="float|fraction|dimension" />
<!-- 边框色(默认状态) -->
<attr name="shape_strokeColor" format="color" />
<!-- 边框色(按下状态) -->
<attr name="shape_strokePressedColor" format="color" />
<!-- 边框色(选中状态) -->
<attr name="shape_strokeCheckedColor" format="color" />
<!-- 边框色(禁用状态) -->
<attr name="shape_strokeDisabledColor" format="color" />
<!-- 边框色(焦点状态) -->
<attr name="shape_strokeFocusedColor" format="color" />
<!-- 边框色(选择状态) -->
<attr name="shape_strokeSelectedColor" format="color" />
<!-- 边框宽度 -->
<attr name="shape_strokeWidth" format="dimension" />
<!-- 边框虚线宽度(为 0 就是实线,大于 0 就是虚线) -->
<attr name="shape_dashWidth" format="dimension" />
<!-- 边框虚线间隔(虚线与虚线之间的间隔) -->
<attr name="shape_dashGap" format="dimension" />
<!-- 内环的半径(仅在 shape="ring" 生效) -->
<attr name="shape_innerRadius" format="dimension" />
<!-- 内环的半径比率(仅在 shape="ring" 生效) -->
<attr name="shape_innerRadiusRatio" format="float" />
<!-- 外环的厚度(仅在 shape="ring" 生效) -->
<attr name="shape_thickness" format="dimension" />
<!-- 外环的厚度比率(仅在 shape="ring" 生效) -->
<attr name="shape_thicknessRatio" format="float" />
<!-- 阴影大小 -->
<attr name="shape_shadowSize" format="dimension" />
<!-- 阴影颜色 -->
<attr name="shape_shadowColor" format="color" />
<!-- 阴影水平偏移 -->
<attr name="shape_shadowOffsetX" format="dimension" />
<!-- 阴影垂直偏移 -->
<attr name="shape_shadowOffsetY" format="dimension" />
<!-- 文本色(默认状态) -->
<attr name="shape_textColor" format="color" />
<!-- 文本色(按下状态) -->
<attr name="shape_textPressedColor" format="color" />
<!-- 文本色(选中状态) -->
<attr name="shape_textCheckedColor" format="color" />
<!-- 文本色(禁用状态) -->
<attr name="shape_textDisabledColor" format="color" />
<!-- 文本色(焦点状态) -->
<attr name="shape_textFocusedColor" format="color" />
<!-- 文本色(选择状态) -->
<attr name="shape_textSelectedColor" format="color" />
<!-- 文本渐变色起始颜色 -->
<attr name="shape_textStartColor" format="color" />
<!-- 文本渐变色中间颜色(可不设置) -->
<attr name="shape_textCenterColor" format="color" />
<!-- 文本渐变色结束颜色 -->
<attr name="shape_textEndColor" format="color" />
<!-- 文本渐变方向(默认类型是水平渐变) -->
<attr name="shape_textGradientOrientation">
<!-- 水平渐变 -->
<enum name="horizontal" value="0" />
<!-- 垂直渐变 -->
<enum name="vertical" value="1" />
</attr>
<!-- 文本边框颜色 -->
<attr name="shape_textStrokeColor" format="color" />
<!-- 文本边框大小 -->
<attr name="shape_textStrokeSize" format="dimension" />
<!-- CheckBox 或者 RadioButton 图标(默认状态) -->
<attr name="shape_buttonDrawable" format="reference" />
<!-- CheckBox 或者 RadioButton 图标(按下状态) -->
<attr name="shape_buttonPressedDrawable" format="reference" />
<!-- CheckBox 或者 RadioButton 图标(选中状态) -->
<attr name="shape_buttonCheckedDrawable" format="reference" />
<!-- CheckBox 或者 RadioButton 图标(禁用状态) -->
<attr name="shape_buttonDisabledDrawable" format="reference" />
<!-- CheckBox 或者 RadioButton 图标(焦点状态) -->
<attr name="shape_buttonFocusedDrawable" format="reference" />
<!-- CheckBox 或者 RadioButton 图标(选择状态) -->
<attr name="shape_buttonSelectedDrawable" format="reference" />
</resources>
目前支持这些属性的控件有:
View 的子类:ShapeView、ShapeTextView、ShapeButton、ShapeImageView、ShapeRadioButton、ShapeCheckBox、ShapeEditText
ViewGroup 的子类:ShapeLinearLayout、ShapeFrameLayout、ShapeRelativeLayout、ShapeConstraintLayout、ShapeRecyclerView、ShapeRadioGroup
功能强大:支持设置阴影、边框渐变色、文本渐变色
更加便捷:无需新增 Xml 文件,直接定义控件属性即可
即时生效:在布局中可实时预览效果,即见所得,无需运行
无学习成本:控件属性和原生 Shape 命名保持一致,无需额外学习
覆盖范围广:几乎涵盖所有常见的 View 控件,并且控件名称无任何记忆成本
支持状态选择器:不仅支持设置背景色的状态选择器,还支持设置文本颜色的状态选择器
安卓技术中台:AndroidProject
安卓技术中台 Kt 版:AndroidProject-Kotlin
权限框架:XXPermissions
吐司框架:ToastUtils
网络框架:EasyHttp
标题栏框架:TitleBar
悬浮窗框架:XToast
语种切换框架:MultiLanguages
Gson 解析容错:GsonFactory
日志查看框架:Logcat
Android 版本适配:AndroidVersionAdapter
Android 代码规范:AndroidCodeStandard
Android 开源排行榜:AndroidGithubBoss
Studio 精品插件:StudioPlugins
表情包大集合:EmojiPackage
省市区 Json 数据:ProvinceJson
Copyright 2021 Huang JinQun
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。