- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试为我的 Android 应用程序创建自定义按钮。这些按钮只是用来在屏幕上添加/编辑/删除数据。但是,我想为按钮做一些漂亮的样式,但我在 android 编程的工作方式上遇到了一些困难。
想法是有一个给定厚度的边框(比方说 2dp),其颜色是渐变的。然而,这意味着中心是透明的,我认为这是主要困难之一。除此之外,我希望按钮内部有一个代表其功能的图标。
目前,我有这样的渐变及其圆边:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:gravity="top">
<shape android:shape="rectangle">
<gradient
android:startColor="@color/colorPrimaryDark"
android:centerColor="@color/colorAccent"
android:endColor="@android:color/white"
android:angle="270" />
<corners android:radius="20dp"/>
</shape>
</item>
</layer-list>
这对应于我想要的颜色。然而,在 drawable 资源文件中似乎不可能有一个透明的中心。
除了这个问题,在我的代码中,我在 LinearLayout
上方有一个 ListView
,其中包含最终应应用此样式的三个按钮。但是,我什至无法更改按钮的背景颜色。
这是表示 Activity 的代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".AddPlayersActivity"
android:orientation="vertical"
android:paddingRight="10dp"
android:paddingLeft="10dp"
android:background="@drawable/background_gradient">
<TextView
android:id="@+id/add_players_activity_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="20dp"
android:fontFamily="@font/lato_bold"
android:text="@string/app_name"
android:textAlignment="center"
android:textColor="@android:color/white"
android:textSize="36sp" />
<TextView
android:layout_below="@+id/add_players_activity_title"
android:id="@+id/add_players_activity_current_players"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fontFamily="@font/lato"
android:text="@string/current_players"
android:textColor="@android:color/white"
android:textSize="20sp" />
<ListView
android:id="@+id/add_players_activity_player_list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/add_players_activity_current_players"
android:layout_above="@id/add_players_activity_button_layout" />
<LinearLayout
android:id="@+id/add_players_activity_button_layout"
android:layout_alignParentBottom="true"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center">
<Button
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginHorizontal="10dp"
android:text="Add"/>
<Button
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginHorizontal="10dp"
android:text="Edit"/>
<Button
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginHorizontal="10dp"
android:text="Delete" />
</LinearLayout>
</RelativeLayout>
其他 StackOverflow 问题都没有解决我的任何一个问题。即使是最常见的“设置按钮的 style
属性”也是如此。
我对可能需要外部工具或其他东西的解决方案非常开放,所以不要觉得局限于内部功能。不过,我确实觉得在 Android Studio 中必须有解决这个问题的方法。
提前感谢任何花时间研究这个问题的人!
这是一个请求的例子(唯一的区别是我将使用可绘制的/图像而不是文本)
最佳答案
我建议为此创建自定义 View 。正如前面提到的,您有很多按钮,创建自定义 View 对您非常有益。通过自定义 View ,您可以重复使用具有不同高度、宽度、边框宽度、颜色和圆角半径的按钮。
阅读更多自定义 View here .您还可以通过一系列从 this one 开始的代码实验室.
attrs.xml(值/attrs.xml):
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Custom attributes for the button -->
<declare-styleable name="StyledButton">
<attr name="cornerRadius" format="dimension" />
<attr name="borderWidth" format="dimension" />
<attr name="startColor" format="color" />
<attr name="centerColor" format="color" />
<attr name="endColor" format="color" />
</declare-styleable>
</resources>
StyledButton.kt:
import android.content.Context
import android.graphics.Canvas
import android.graphics.Color
import android.graphics.LinearGradient
import android.graphics.Paint
import android.graphics.Path
import android.graphics.Shader
import android.util.AttributeSet
import androidx.appcompat.widget.AppCompatImageButton
import androidx.core.content.withStyledAttributes
class StyledButton @JvmOverloads constructor(
context: Context,
attrs: AttributeSet? = null,
defStyleAttr: Int = 0
) : AppCompatImageButton(context, attrs, defStyleAttr) {
private var cornerRadius = 0f
private var borderWidth = 0f
private var startColor = 0
private var centerColor = 0
private var endColor = 0
private val path = Path()
private val borderPaint = Paint().apply {
style = Paint.Style.FILL
}
init {
//Get the values you set in xml
context.withStyledAttributes(attrs, R.styleable.StyledButton) {
borderWidth = getDimension(R.styleable.StyledButton_borderWidth, 10f)
cornerRadius = getDimension(R.styleable.StyledButton_cornerRadius, 10f)
startColor = getColor(R.styleable.StyledButton_startColor, Color.WHITE)
centerColor = getColor(R.styleable.StyledButton_centerColor, Color.RED)
endColor = getColor(R.styleable.StyledButton_endColor, Color.BLACK)
}
}
override fun onSizeChanged(w: Int, h: Int, oldw: Int, oldh: Int) {
super.onSizeChanged(w, h, oldw, oldh)
// Create and set your gradient here so that the gradient size is always correct
borderPaint.shader = LinearGradient(
0f,
0f,
width.toFloat(),
height.toFloat(),
intArrayOf(startColor, centerColor, endColor),
null,
Shader.TileMode.CLAMP
)
}
override fun onDraw(canvas: Canvas) {
super.onDraw(canvas)
//Remove inner section (that you require to be transparent) from canvas
path.rewind()
path.addRoundRect(
borderWidth,
borderWidth,
width.toFloat() - borderWidth,
height.toFloat() - borderWidth,
cornerRadius - borderWidth / 2,
cornerRadius - borderWidth / 2,
Path.Direction.CCW
)
canvas.clipOutPath(path)
//Draw gradient on the outer section
path.rewind()
path.addRoundRect(
0f,
0f,
width.toFloat(),
height.toFloat(),
cornerRadius,
cornerRadius,
Path.Direction.CCW
)
canvas.drawPath(path, borderPaint)
}
}
用法:
<com.example.andriod.myapplication.StyledButton
android:layout_width="100dp"
android:layout_height="40dp"
android:src="@drawable/ic_android"
android:scaleType="center"
android:layout_gravity="center"
app:borderWidth="2dp"
app:cornerRadius="20dp"
app:startColor="@color/colorPrimaryDark"
app:centerColor="@android:color/holo_red_dark"
app:endColor="@color/colorPrimary"/>
结果
关于android - 带有渐变轮廓的自定义按钮和带有透明背景的图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63833854/
我使用 jQuery 已经有一段时间了,但我不知道如何从一个渐变渐变到另一个渐变。我一直在用 http://www.colorzilla.com/gradient-editor/对于我的渐变。例如 b
为了使用 jni 帮助程序库运行测试,我将这样的代码添加到 build.gradle 中: def jniLibDir = "xxx" tasks.withType(Test) { syste
我正在从命令行运行 wsimport 以从 WSDL 生成 java 类,如下所示。 wsimport -J-Djavax.xml.accessExternalDTD=all -J-
我们有一个重复使用第3方 war 的项目(如果有人要求,则为shindig-server-2.0.2.war :)。这场 war 目前位于项目根目录中,当前的ant任务将其解压缩到temp文件夹中,进
我有一个边界框,其坐标由(x,y,w,h)给出,其中x和y是框的左上角坐标。我想在盒子外面应用模糊或渐变。如何使用上面的坐标创建蒙版,并使用类似于下图的PIL或cv2在蒙版之外应用此效果? 最佳答案
考虑情况http://codepen.io/anon/pen/JdGYBN 我需要在拖动元素时动态更改卡片“可拖动”的背景颜色。 但是卡片的背景应该根据线条的渐变颜色而变化。 background:
我现在有这种情况:JSFIDDLE 我想实现这种效果,但我希望文本可以在渐变后面选择,并且即使我将鼠标放在文本上也可以滚动文本。 是否有任何解决方法可以使用 javascript 来改变滚动时文本的不
这段代码是我从css graident generator得到的,渐变底部是透明的 background: -moz-linear-gradient(top, rgba(248,246,247,1)
我必须使用 CSS 完成以下图像: 这是一张包含主导航的图像。所以我为此写了一些 CSS(我知道不是正确的颜色代码): #menu-block { background: #730868; b
是否可以使用渐变作为渐变中的一种颜色? 为了我的特定目的,我有一个从左到右的初始渐变: linear-gradient(to right, red, darkgray); 但我希望深灰色部分实际上是从
我这辈子都想不通为什么 transition 属性在我的 CSS 中不起作用。这是代码: #header #menu-top-nav ul li a { -webkit-transition:
我一直在寻找像下图中那样的多组件日期选择器,但在 Github 或其他地方找不到任何东西。 所以我决定做一个。我在实现 CSS 时遇到问题,它在顶部和底部淡出。 我想过在容器中使用:before和:a
我正在寻找与下图等效的 css。我正在使用多个停止点,但很难获得硬停止点 solid 2px white 边框。如果我添加它,它看起来像是一个渐变而不是硬边。任何帮助都会很棒,谢谢! .stripes
我的广告部门给了我一些图像,将其放在网站上的选项卡等。但是我确信这会减慢页面的呈现速度。所以我想我会用 css 来做。然而,经过几次试验,我无法接近以下图像。对于这两张图片,我将不胜感激。 请删除这个
我试图在将鼠标悬停在 div (id="above") 上时更改 body 的背景图像/渐变,我按照他们在另一篇文章 (http://stackoverflow.com/questions/14623
我正在测试所有浏览器的渐变兼容性,我发现渐变在 FireFox 上有不同的效果。请允许我演示测试。 代码 body{
当我使用渐变时,当内容很少时,渐变会重复出现,我该如何防止这种情况发生? http://jsfiddle.net/mcqpP/1/ 我可以尝试使用 html { height: 100%; },但是当
我有一个导航栏,它的背景颜色略深。我想要一个从中心到左右两侧的渐变,以便导航栏最右边和最左边的位达到背景颜色。这可能吗? -->
我在 Firefox 中使用了这个 CSS 线性渐变,但在 Safari 和其他浏览器中似乎无法获得相同的结果。它是联系字段的纸状背景。我试过整个 body 和一个特定的元素,这种风格似乎只适用于 F
我有这行代码 背景:线性渐变(341deg, #8a8a8a 0%, #8a8a8a 31.9%, #000 32.1%, #000 100%); 如您所见,它一半是灰色一半是黑色。有没有办法让它的灰
我是一名优秀的程序员,十分优秀!