Kotlin Android Studio - AlertDialog 中的 TextInputLayout
Kotlin Android Studio - TextInputLayout in AlertDialog
我需要将自定义布局扩展到 AlertDialog。
这是我的代码:
val inflater = LayoutInflater.from(applicationContext)
val dialogView = inflater.inflate(R.layout.alertdialog_autocancel, autocancel_root) //Inflate layout for AlertDialog
val alertDialogHour = AlertDialog.Builder(this, R.style.AppCompatAlertDialogStyle) //build AlertDialog
alertDialogHour.setView(dialogView) //set inflated layout
一切正常,但是当我添加到我的自定义布局时
<com.google.android.material.textfield.TextInputLayout
android:layout_width="250dp"
android:backgroundTint="#d37a7a"
android:layout_marginTop="35dp"
android:layout_height="wrap_content">
<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:id="@+id/minute_editText"
android:layout_marginStart="15dp"
android:layout_marginEnd="15dp"
android:backgroundTint="#d37a7a"
android:hint="@string/minute"
android:fontFamily="@font/product_sans_regular"
android:textColor="#ffffff"
android:textColorHint="#ffffff"
android:layout_height="wrap_content"
android:inputType="number"/>
</com.google.android.material.textfield.TextInputLayout>
它给我错误
android.view.InflateException: Binary XML file line #8: Binary XML file line #8: Error inflating class
Caused by: android.view.InflateException: Binary XML file line #8: Error inflating class
我知道 TextInputLayout 需要一个 AppCompat 主题,所以我想使用 LayoutInflaterCompat
,但是文档很乱,而且没有在线指南。
我能做什么?
编辑
这是我的 build.gradle 依赖项
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.core:core-ktx:1.0.2'
implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation 'com.google.android.material:material:1.0.0'
implementation 'com.android.volley:volley:1.1.0'
implementation 'com.google.code.gson:gson:2.8.5'
}
请勿自行充气查看。 AlertDialog.Builder
具有 setView(res:Int)
膨胀布局本身的功能。
示例:
AlertDialog.Builder(this)
.setView(R.layout.alertdialog_autocancel)
.create()
我需要将自定义布局扩展到 AlertDialog。
这是我的代码:
val inflater = LayoutInflater.from(applicationContext)
val dialogView = inflater.inflate(R.layout.alertdialog_autocancel, autocancel_root) //Inflate layout for AlertDialog
val alertDialogHour = AlertDialog.Builder(this, R.style.AppCompatAlertDialogStyle) //build AlertDialog
alertDialogHour.setView(dialogView) //set inflated layout
一切正常,但是当我添加到我的自定义布局时
<com.google.android.material.textfield.TextInputLayout
android:layout_width="250dp"
android:backgroundTint="#d37a7a"
android:layout_marginTop="35dp"
android:layout_height="wrap_content">
<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:id="@+id/minute_editText"
android:layout_marginStart="15dp"
android:layout_marginEnd="15dp"
android:backgroundTint="#d37a7a"
android:hint="@string/minute"
android:fontFamily="@font/product_sans_regular"
android:textColor="#ffffff"
android:textColorHint="#ffffff"
android:layout_height="wrap_content"
android:inputType="number"/>
</com.google.android.material.textfield.TextInputLayout>
它给我错误
android.view.InflateException: Binary XML file line #8: Binary XML file line #8: Error inflating class Caused by: android.view.InflateException: Binary XML file line #8: Error inflating class
我知道 TextInputLayout 需要一个 AppCompat 主题,所以我想使用 LayoutInflaterCompat
,但是文档很乱,而且没有在线指南。
我能做什么?
这是我的 build.gradle 依赖项
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.core:core-ktx:1.0.2'
implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation 'com.google.android.material:material:1.0.0'
implementation 'com.android.volley:volley:1.1.0'
implementation 'com.google.code.gson:gson:2.8.5'
}
请勿自行充气查看。 AlertDialog.Builder
具有 setView(res:Int)
膨胀布局本身的功能。
示例:
AlertDialog.Builder(this)
.setView(R.layout.alertdialog_autocancel)
.create()