java-为什么Android对话框标题未显示在android版本的棉花糖上?
作者:互联网
我试图创建一个自定义对话框,这是我的代码:
val myDialog = Dialog(this)
myDialog.setContentView(R.layout.my_dialog)
myDialog.setTitle("My Dialog!")
myDialog.setCancelable(true)
myDialog.show()
这是my_dialog.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.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">
<TextView
android:text="Hello world!"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/textView"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
android:textSize="30sp"/>
</android.support.constraint.ConstraintLayout>
我已经在Android版本Lollipop上运行了它,在这里棒棒糖的屏幕截图效果很好:
如您所见,对话框标题正在显示,但是当我尝试在Android版本上运行时,棉花糖标题停止显示,这里是棉花糖的屏幕截图:
如您所见,对话框标题未显示在android版本的棉花糖上.我尝试添加此行以显示标题:
myDialog.create()
但标题仍然没有显示.我该怎么办?
解决方法:
您是否尝试过应用自定义样式…对话框采用了可能已设置为NoTitle的父活动的样式.
<style name="CustomDialog" parent="@style/Theme.AppCompat.Light.Dialog">
<item name="android:windowNoTitle">false</item>
</style>
关于java代码
new AlertDialog.Builder(new ContextThemeWrapper(Context, R.style.Dialog))
标签:kotlin,dialog,customdialog,java,android 来源: https://codeday.me/bug/20191108/2006887.html