欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

异常: java.lang.reflect.InvocationTargetException 反射异常

程序员文章站 2024-01-10 14:58:34
...
异常如下:

异常: java.lang.reflect.InvocationTargetException 反射异常

注:反射异常
原因:是MaterialButton下主题强制
  <com.google.android.material.button.MaterialButton
        android:id="@+id/btnLogin"
        android:layout_width="match_parent"
        android:layout_marginTop="40dp"
        app:cornerRadius="20dp"
        android:textSize="18sp"
        android:padding="12dp"
        android:layout_marginStart="15dp"
        android:layout_marginEnd="15dp"
        android:layout_height="wrap_content"
        android:backgroundTint="@color/blue"
        android:text="@string/ok"
        app:layout_constraintTop_toBottomOf="@id/etPwd" />
      android:theme="@style/Theme.AppCompat.NoActionBar"
解决方法:进行主题替换即可
       android:theme="@style/Theme.MaterialComponents.Light.NoActionBar">