将自定义字体设置为对话框

时间:2019-04-01 10:57:58

标签: android user-interface dialog android-appcompat

我们试图将对话框的标题设置为具有自定义字体,因此我们尝试使用以下主题:

<style name="DialogTheme" parent="Theme.AppCompat.Dialog.Alert">
  <item name="android:windowTitleStyle">@style/Dialog.Title</item>
</style>


<style name="Dialog.Title" parent="RtlOverlay.DialogWindowTitle.AppCompat">
  <item name="android:textAppearance">@style/Dialog.TextAppearance.Title</item>
</style>


<style name="Dialog.TextAppearance.Title" parent="TextAppearance.AppCompat.Title">
  <item name="fontFamily">@font/custom_font</item>
</style>

我们正在创建这样的对话框生成器:

AlertDialog.Builder(ContextThemeWrapper(context, R.style.DialogTheme), R.style.DialogTheme)

样式和文本外观被完全忽略。对于其他样式,它似乎可行。

我们设法通过复制AppCompat使用的版式并将其添加为自定义标题来使其起作用:

<?xml version="1.0" encoding="utf-8"?>
<!-- modified from AppCompat's abc_alert_dialog_title_material.xml -->
<FrameLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:gravity="center_vertical|start|left"
  android:paddingLeft="?attr/dialogPreferredPadding"
  android:paddingRight="?attr/dialogPreferredPadding"
  android:paddingTop="@dimen/abc_dialog_padding_top_material">

  <TextView
    android:id="@+id/alertTitle"
    style="@style/Dialog.Title"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:ellipsize="end"
    android:singleLine="true"
    android:textAlignment="viewStart"
    tools:text="Some title" />

</FrameLayout>

基于此:abc_alert_dialog_title_material.xml

我们在这里使用DialogTitle而不是使用TextViewDialogTitle正在用以下内容重载onMeasure:

final Layout layout = getLayout();
if (layout != null) {
    final int lineCount = layout.getLineCount();
    if (lineCount > 0) {
        final int ellipsisCount = layout.getEllipsisCount(lineCount - 1);
        if (ellipsisCount > 0) {
            setSingleLine(false);
            setMaxLines(2);
            final TypedArray a = getContext().obtainStyledAttributes(null,
                    R.styleable.TextAppearance,
                    android.R.attr.textAppearanceMedium,
                    android.R.style.TextAppearance_Medium);
            final int textSize = a.getDimensionPixelSize(
                    R.styleable.TextAppearance_android_textSize, 0);
            if (textSize != 0) {
                // textSize is already expressed in pixels
                setTextSize(TypedValue.COMPLEX_UNIT_PX, textSize);
            }
            a.recycle();
            super.onMeasure(widthMeasureSpec, heightMeasureSpec);
        }
    }
}

我们认为它与设置文本大小有关,但是我们不确定。我们有一个可行的技巧(具有复制的版式)。但是,我们宁愿知道我们如何使其能够与xml样式和主题一起使用,而不必更改默认行为。

1 个答案:

答案 0 :(得分:0)

从我最近发布的另一个问题的答案开始,这就是我如何以编程方式设置AlertDialog的所有属性的字体的方法。希望它对您有用。

Typeface semibold = ResourcesCompat.getFont(this, R.font.product_bold);
Typeface regular = ResourcesCompat.getFont(this, R.font.product_regular);
AlertDialog myDialog = new AlertDialog.Builder(this).setTitle("Your title")
        .setMessage("Your message.")
        .setPositiveButton("Your button", new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialog, int which) {
                //your code
            }
        }).show();
int titleText = getResources().getIdentifier("alertTitle", "id", "android");
((TextView) myDialog.getWindow().findViewById(titleText)).setTypeface(semibold);
TextView dialogMessage = myDialog.getWindow().findViewById(android.R.id.message);
Button dialogButton = myDialog.getWindow().findViewById(android.R.id.button1);
dialogMessage.setTypeface(regular);
dialogButton.setTypeface(semibold);

确认可以在Android 9.0上运行,不能声称它可以在较旧的API上运行。

使用TextView以编程方式设置标题的另一种方法,这就是我以前的做法:

TextView alertTitle = findViewById(R.id.alertTextTemp);
if (alertTitle.getParent() != null) {
    ((ViewGroup) alertTitle.getParent()).removeView(alertTitle);
}
alertTitle.setText("Warning");
alertTitle.setVisibility(View.VISIBLE);
alertTitle.setTypeface(semibold);

然后,在创建对话框时,您可以使用以下方式设置自定义标题:

new AlertDialog.Builder(MainActivity.this).setCustomTitle(alertTitle)...

alertTitle是您的activity_main.xml文件中的TextView:

<TextView
    android:id="@+id/alertTextTemp"
    android:visibility="gone"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textSize="22sp"
    android:paddingLeft="23dp"
    android:paddingTop="22dp"
    android:textColor="#000000" />

我必须对TextView上的那些属性进行微调,以使其尽可能接近默认标题边距和大小,您可能需要验证它是否适合您。