优雅数字按钮未显示在Android Studio XML预览中

2lpgd968  于 2023-02-05  发布在  Android
关注(0)|答案(4)|浏览(128)

正如标题所说,优雅的数字按钮没有显示在我的XML预览中。
我已在我的Gradle应用中添加并成功同步

implementation 'com.cepheuen.elegant-number-button:lib:1.0.3'

并使用以下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"
        tools:context=".Customer.ProductDetailsActivity"
        tools:replace="android:theme">

        <com.cepheuen.elegantnumberbutton.view.ElegantNumberButton
            android:id="@+id/elegantNumberButton_quantity"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:gravity="center"
            app:initialNumber="1"
            app:finalNumber="10"
            app:layout_constraintTop_toTopOf="@+id/textView_labelquantity"
            app:layout_constraintStart_toEndOf="@+id/textView_labelquantity"
            app:layout_constraintBottom_toBottomOf="@+id/textView_labelquantity"
            android:layout_marginStart="15dp">
        </com.cepheuen.elegantnumberbutton.view.ElegantNumberButton>

    </androidx.constraintlayout.widget.ConstraintLayout>

但优雅的数字按钮仍然没有显示。

nhjlsmyf

nhjlsmyf1#

我也有同样的问题重建计划帮我解决了

lnxxn5zx

lnxxn5zx2#

    • 这是工作,但背景是白色的。**

添加此行:app:backGroundColor="#ffffff" app:textColor="#000000" app:textSize="8sp"

c86crjj0

c86crjj03#

为此,您应该尝试重建项目。这解决了我的问题。

bybem2ql

bybem2ql4#

我通过在应用程序 build.gradle 文件中添加jcenter()作为存储库解决了这个问题。看起来这个依赖关系只托管在jcenter()上,而没有托管在其他地方。
来源- https://mvnrepository.com/工件/com.cepheuen.优雅数字按钮/lib/1.0.3#:~:text=注意事项%3A%20this%20工件,jcenter.bintray.com/)

相关问题