【问题标题】:How to change button background in Android in Neumorphism design concept?如何在 Neumorphism 设计概念中更改 Android 中的按钮背景?
【发布时间】:2020-12-24 06:18:05
【问题描述】:

我在我的项目中从事基于神经拟态的设计。我正在使用这个库 https://github.com/fornewid/neumorphism 来实现 Neumorphism 效果。我的问题是我无法更改按钮或任何其他视图的背景。

这是我的布局文件

activity_neumorphism.xml

    <?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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"
    android:background="@drawable/screen_background_gradient"
    tools:context=".NeumorphismActivity">


    <soup.neumorphism.NeumorphButton
        android:id="@+id/button"
        style="@style/Widget.Neumorph.Button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="36dp"
        android:drawablePadding="8dp"
        android:background="@drawable/res_transparent_yellow_roundedfilled_corner"
        android:text="Button"
        android:textColor="#FFFFFF"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent" />

    <Button
        android:id="@+id/normal_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="button"
        android:layout_marginTop="50dp"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        android:background="@drawable/res_transparent_yellow_roundedfilled_corner"/>

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_constraintTop_toBottomOf="@+id/normal_button"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        android:text="THIS IS NORMAL BUTTON"
        android:textColor="#FFFFFF"
        android:layout_marginTop="30dp"
        />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_constraintTop_toBottomOf="@+id/button"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        android:text="THIS IS Neumorphism effect BUTTON"
        android:textColor="#FFFFFF"
        android:layout_marginTop="30dp"
        />

</androidx.constraintlayout.widget.ConstraintLayout>

我在这个 xml 中有两个按钮。一个是普通按钮,另一个是神经拟态。我已经为两者设置了背景,但它只适用于普通按钮。

下面是背景的可绘制文件

res_transparent_yellow_roundedfilled_corner.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:shape="rectangle">
    <corners
        android:radius="10dp"
        />


    <gradient
        android:startColor="#C8A800"
        android:endColor="#FFD80A"/>
</shape>

下面是样式。

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <style name="Widget.Neumorph.Button" parent="Widget.AppCompat.Button">
        <item name="android:textAppearance">?android:attr/textAppearanceButton</item>
        <item name="android:minHeight">72dip</item>
        <item name="android:minWidth">112dip</item>
        <item name="android:background">@drawable/res_transparent_yellow_roundedfilled_corner</item>
        <item name="android:paddingLeft">@dimen/design_btn_padding_left</item>
        <item name="android:paddingRight">@dimen/design_btn_padding_right</item>
        <item name="android:paddingTop">@dimen/design_btn_padding_top</item>
        <item name="android:paddingBottom">@dimen/design_btn_padding_bottom</item>
        <item name="android:stateListAnimator">@animator/button_state_list_anim_neumorph</item>
        <item name="android:focusable">true</item>
        <item name="android:clickable">true</item>
        <item name="android:gravity">center_vertical|center_horizontal</item>
        <item name="neumorph_inset">@dimen/design_default_inset</item>
        <item name="neumorph_shadowElevation">6dp</item>
        <item name="neumorph_shadowColorLight">#FFFFFF</item>
        <item name="neumorph_shadowColorDark">#000000</item>
        <item name="neumorph_shapeType">flat</item>
        <item name="neumorph_shapeAppearance">@style/ShapeAppearance.Neumorph.Button</item>

    </style>

    <style name="ShapeAppearance.Neumorph.Button" parent="">

        <item name="background"> @drawable/res_transparent_yellow_roundedfilled_corner</item>

    </style>
</resources>

【问题讨论】:

    标签: android android-layout android-drawable android-button


    【解决方案1】:

    使用此属性在您的 xml 中更改背景 app:neumorph_backgroundColor="@color/background_color"

    如果不起作用,NeumorphButton 内部有一种方法是setBackgroundDrawable。你可以通过编程方式设置drawable

    编辑

    你不能在这个库中设置自定义背景,因为它说

    不支持设置自定义背景。

    【讨论】:

    • app:neumorph_backgroundColor -> 这个属性改变那个按钮的背景颜色。但我需要的是,我想为该按钮添加可绘制背景,以便我可以在 xml 中自定义形状。这个 setBackgroundDrawable 不起作用。
    • 你能把你需要的截图贴出来吗?
    • 已添加。我也想要在普通按钮中用于 Neumorphism 按钮的相同背景
    • 你不能在这个库中设置自定义背景,因为它说Setting a custom background is not supported.
    • 这里有一些不错的java库github.com/topics/neumorphism?l=java
    猜你喜欢
    • 2021-02-07
    • 1970-01-01
    • 2021-03-18
    • 2017-12-29
    • 1970-01-01
    • 1970-01-01
    • 2021-12-19
    • 2013-08-28
    • 2013-09-07
    相关资源
    最近更新 更多