自定义 AlertDialog 中的文本外观不正确
Improper text appearance in Custom AlertDialog
在我的代码中,我通过扩展布局并将其设置为对话框的视图来呈现自定义警报对话框。
我遇到的问题是文本在 Android Studio 的设计工具中看起来不错,但在 运行 时,对话框变小并且文本占用更多行。
我尝试了不同的方法来修复它,但没有获得想要的结果。
对于布局,我使用的是约束布局,文本是"wrap content"
。
这是我的代码:
//inflate alert layout
LayoutInflater inflater = LayoutInflater.from(this);
final View view = inflater.inflate(R.layout.connectivity_issue_counter, null);
//set builder
AlertDialog.Builder dialog = new AlertDialog.Builder(this);
dialog.setView(view);
dialog.setCancelable(false);
final AlertDialog alert = dialog.create();
//define dialog buttons and counter......//
alert.show();
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"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/alertBackground">
<TextView
android:id="@+id/connectivity_issue_title"
style="@style/customAlertTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="32dp"
android:layout_marginTop="16dp"
android:layout_marginEnd="50dp"
android:text="@string/connectivity_issue_title"
app:layout_constraintEnd_toStartOf="@+id/connectivity_issue_wait"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/connectivity_issue_wait"
style="@style/customAlertTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:layout_marginEnd="8dp"
android:text="@string/connectivity_issue_wait"
app:layout_constraintEnd_toStartOf="@+id/connectivity_issue_counter_text"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/connectivity_issue_counter_text"
style="@style/customAlertTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:layout_marginEnd="16dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/connectivity_issue_main_text"
style="@style/customAlertMainText"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="32dp"
android:layout_marginTop="16dp"
android:layout_marginEnd="8dp"
android:text="@string/connectivity_issue_main_text"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/connectivity_issue_title" />
<Button
android:id="@+id/connectivity_isuue_button"
style="@style/customAlertButton"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginTop="16dp"
android:layout_marginEnd="8dp"
android:text="@string/stop"
app:layout_constraintEnd_toStartOf="@+id/guideline21"
app:layout_constraintStart_toStartOf="@+id/guideline22"
app:layout_constraintTop_toBottomOf="@+id/connectivity_issue_main_text" />
<android.support.constraint.Guideline
android:id="@+id/guideline20"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintGuide_percent="0.82" />
<android.support.constraint.Guideline
android:id="@+id/guideline21"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintGuide_percent="0.75" />
<android.support.constraint.Guideline
android:id="@+id/guideline22"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintGuide_percent="0.25" />
</android.support.constraint.ConstraintLayout>
*另一个有趣的事情 - 在不同的平板电脑上(都是同一型号)对话框看起来更大更宽。
如有任何帮助,我将不胜感激。
¿也许 phone 上的文字更大?我看不到 customAlertTitle
样式,但我想文本在 "SP" 上,这些是 "DP" 但文本大小依赖(如果 phone 设置为从它的设置选项卡以大字体显示文本,它会增加它的大小)。
也许一个解决方案是将大小设置为 "DP",但您不会让人们更改它,因此它会产生反作用。
我想到的另一个想法是,您在预览中预览的屏幕尺寸比 phone 的屏幕尺寸大。
我最后会尝试的是在创建对话框后手动更改 'android.R.id.message' TextView 的大小。一旦你显示它,你可以通过调用它的 id 来访问消息的文本视图,
TextView messageTv = (TextView) alert.findViewById(android.R.id.message);
messageTv.setTextSize(X);
编辑:不要介意最后一个想法,因为你正在膨胀自己的布局,也许你可以尝试访问你的 id 并以相同的方式更改它,但是 R.id.connectivity_issue_wait
按照 Davidaz 的建议,我已将文本大小从 sp 更改为 dp,这有助于解决问题。
在我的代码中,我通过扩展布局并将其设置为对话框的视图来呈现自定义警报对话框。 我遇到的问题是文本在 Android Studio 的设计工具中看起来不错,但在 运行 时,对话框变小并且文本占用更多行。 我尝试了不同的方法来修复它,但没有获得想要的结果。
对于布局,我使用的是约束布局,文本是"wrap content"
。
这是我的代码:
//inflate alert layout
LayoutInflater inflater = LayoutInflater.from(this);
final View view = inflater.inflate(R.layout.connectivity_issue_counter, null);
//set builder
AlertDialog.Builder dialog = new AlertDialog.Builder(this);
dialog.setView(view);
dialog.setCancelable(false);
final AlertDialog alert = dialog.create();
//define dialog buttons and counter......//
alert.show();
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"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/alertBackground">
<TextView
android:id="@+id/connectivity_issue_title"
style="@style/customAlertTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="32dp"
android:layout_marginTop="16dp"
android:layout_marginEnd="50dp"
android:text="@string/connectivity_issue_title"
app:layout_constraintEnd_toStartOf="@+id/connectivity_issue_wait"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/connectivity_issue_wait"
style="@style/customAlertTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:layout_marginEnd="8dp"
android:text="@string/connectivity_issue_wait"
app:layout_constraintEnd_toStartOf="@+id/connectivity_issue_counter_text"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/connectivity_issue_counter_text"
style="@style/customAlertTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:layout_marginEnd="16dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/connectivity_issue_main_text"
style="@style/customAlertMainText"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="32dp"
android:layout_marginTop="16dp"
android:layout_marginEnd="8dp"
android:text="@string/connectivity_issue_main_text"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/connectivity_issue_title" />
<Button
android:id="@+id/connectivity_isuue_button"
style="@style/customAlertButton"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginTop="16dp"
android:layout_marginEnd="8dp"
android:text="@string/stop"
app:layout_constraintEnd_toStartOf="@+id/guideline21"
app:layout_constraintStart_toStartOf="@+id/guideline22"
app:layout_constraintTop_toBottomOf="@+id/connectivity_issue_main_text" />
<android.support.constraint.Guideline
android:id="@+id/guideline20"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintGuide_percent="0.82" />
<android.support.constraint.Guideline
android:id="@+id/guideline21"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintGuide_percent="0.75" />
<android.support.constraint.Guideline
android:id="@+id/guideline22"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintGuide_percent="0.25" />
</android.support.constraint.ConstraintLayout>
*另一个有趣的事情 - 在不同的平板电脑上(都是同一型号)对话框看起来更大更宽。
如有任何帮助,我将不胜感激。
¿也许 phone 上的文字更大?我看不到 customAlertTitle
样式,但我想文本在 "SP" 上,这些是 "DP" 但文本大小依赖(如果 phone 设置为从它的设置选项卡以大字体显示文本,它会增加它的大小)。
也许一个解决方案是将大小设置为 "DP",但您不会让人们更改它,因此它会产生反作用。
我想到的另一个想法是,您在预览中预览的屏幕尺寸比 phone 的屏幕尺寸大。
我最后会尝试的是在创建对话框后手动更改 'android.R.id.message' TextView 的大小。一旦你显示它,你可以通过调用它的 id 来访问消息的文本视图,
TextView messageTv = (TextView) alert.findViewById(android.R.id.message);
messageTv.setTextSize(X);
编辑:不要介意最后一个想法,因为你正在膨胀自己的布局,也许你可以尝试访问你的 id 并以相同的方式更改它,但是 R.id.connectivity_issue_wait
按照 Davidaz 的建议,我已将文本大小从 sp 更改为 dp,这有助于解决问题。