在GradientDrawable Android上设置笔触

时间:2018-10-01 18:21:52

标签: android button gradientdrawable

我正在创建一个自定义按钮,并且正在使用Drawable.setTintList为默认,按下和禁用状态设置颜色。
我实际上想在按钮上添加边框,我正在尝试这样做:

char

使用此边框不可见,但是,如果我不使用色调列表,则可以看到边框。
有没有办法可以使用setStroke和TintList?
我尝试了d.setStroke(width,colorList),它也不起作用。

3 个答案:

答案 0 :(得分:1)

您可以在状态下使用drawable 例如:

<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:state_pressed="true">
        <shape android:shape="rectangle">
            <corners android:radius="4dp" />
            <stroke android:width="10dp" android:color="#6699ff" />
        </shape>
    </item>

    <item>
        <shape android:shape="rectangle">
            <corners android:radius="4dp" />
            <stroke android:width="10dp" android:color="#669900" />
        </shape>
    </item>

</selector>

enter image description here

答案 1 :(得分:0)

我有同样的问题,但我也实现了另一种方法。

这是XML:

<androidx.constraintlayout.widget.ConstraintLayout
    android:id="@+id/container"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <FrameLayout
        android:id="@+id/view_card_header_large_border_container"
        android:layout_width="0dp"
        android:layout_height="0dp"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintBottom_toBottomOf="parent">

        <com.google.android.material.card.MaterialCardView
            android:id="@+id/view_card_header_large_border_base"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_margin="1dp"
            app:cardBackgroundColor="?paper_color"
            app:cardCornerRadius="10dp"
            app:cardElevation="0dp"/>

    </FrameLayout>

    <androidx.constraintlayout.widget.ConstraintLayout
        android:id="@+id/view_card_header_large_container"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
            ....
    </androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>

这是代码:

    GradientDrawable gradientDrawable = new GradientDrawable(GradientDrawable.Orientation.LEFT_RIGHT,
            new int[] {leftColor, rightColor});

    // card background
    gradientDrawable.setAlpha(70);
    gradientDrawable.setCornerRadius(borderBaseView.getRadius());
    container.setBackground(gradientDrawable);

    // card border's background, which depends on the margin that is applied to the borderBaseView
    gradientDrawable.setAlpha(90);
    gradientDrawable.setCornerRadius(12dp);
    borderContainer.setBackground(gradientDrawable);

该想法是将背景设置为两个视图,顶视图覆盖“边界”基本视图,但保留1dp边距作为“边界”。

这样您将在视图中拥有渐变背景,在边框中也拥有渐变背景。

答案 2 :(得分:0)

你试过了吗:

setStroke(
     (strokeSize * resources.displayMetrics.density).toInt(), 
     ColorStateList.valueOf(ContextCompat.getColor(context,colorRes)),
     0f,
     0f
)