我正在使用MaterialButton,但顯示不正確。
這是我正在使用的代碼
<com.google.android.material.button.MaterialButton
android:id="@ id/verifyOTP"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Verify OTP"
android:layout_marginTop="10dp"/>
這是當前顯示

這是我正在使用的依賴項
'com.google.android.material:material:1.5.0'
這是我期待的行為

請幫助我如何解決這個問題。
注意: Button作業正常只是MaterialButton不能正常作業
uj5u.com熱心網友回復:
嘗試將 style 屬性添加到您的 MaterialButton 宣告中:
<com.google.android.material.button.MaterialButton
android:id="@ id/verifyOTP"
style="@style/Widget.MaterialComponents.Button.TextButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="20dp"
android:text="..."/>
轉載請註明出處,本文鏈接:https://www.uj5u.com/shujuku/452403.html
