Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何访问对话框的标题以更改字体字体(创建对话框的自定义标题)?
你不能这样做。您必须使用一个活动并将其主题设置为对话框。像这样
<activity android:theme="@android:style/Theme.Dialog" />
当你开始你的活动时,它会在你的 xml 布局文件中作为一个对话框和 setTypeFace 开始,或者以编程方式设置它。如果您不想设置标题,请设置此代码:
requestWindowFeature(Window.FEATURE_NO_TITLE);
它需要在调用 super.onCreate 后立即完成。