gpt4 book ai didi

android - AlertDialog 中的右对齐文本

转载 作者:可可西里 更新时间:2023-11-01 18:49:39 33 4
gpt4 key购买 nike

是否可以将 AlertDialog 的标题和消息中的文本右对齐?

我正在显示希伯来语消息,但它们显示为左对齐。

最佳答案

这是一个老问题,但是有一个非常简单的解决方案。假设您使用的是 MinSdk 17,您可以将其添加到您的 styles.xml:

<style name="AlertDialogCustom" parent="ThemeOverlay.AppCompat.Dialog.Alert">
<item name="android:layoutDirection">rtl</item>
</style>

而在 AlertDialog.Builder 中,您只需在构造函数中指定此 AlertDialogCustom:

new AlertDialog.Builder(this, R.style.AlertDialogCustom)
.setTitle("Your title?")
.show();

关于android - AlertDialog 中的右对齐文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6131133/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com