我想更改“提醒”对话框的字体。
有人可以告诉我该怎么办?
答案 0 :(得分:28)
我找到了一个简单的解决方案..
起初我是通过
设置警报框的标题builder.setTitle("My Title");
所以我无法改变它的字体..
然后对我有用的是......
我创建了一个简单的TextView:
TextView tv2;
并设置我想要的TextView的所有属性......
然后我替换了我的
builder.setTitle("My Title");
与
对齐builder.setCustomTitle(tv2);
现在我可以通过更改Title Color
属性来更改Font
,tv2's
等等。
答案 1 :(得分:16)
没有答案提供更改AlertDialog
的标题字体的方法。这就是我所做的:
创建以下类:
public static class TypefaceSpan extends MetricAffectingSpan {
private final Typeface typeface;
public TypefaceSpan(Typeface typeface) {
this.typeface = typeface;
}
@Override public void updateDrawState(TextPaint tp) {
tp.setTypeface(typeface);
tp.setFlags(tp.getFlags() | Paint.SUBPIXEL_TEXT_FLAG);
}
@Override public void updateMeasureState(TextPaint p) {
p.setTypeface(typeface);
p.setFlags(p.getFlags() | Paint.SUBPIXEL_TEXT_FLAG);
}
}
添加以下实用程序方法:
/**
* <p>Return spannable string with applied typeface in certain style</p>
*
* http://stackoverflow.com/questions/8607707/how-to-set-a-custom-font-in-the-actionbar-title
*
* @param typeface
* The typeface to set to the {@link SpannableString}
* @param string
* the string to place in the span
* @return SpannableString that can be used in TextView.setText() method
*/
public static SpannableString typeface(Typeface typeface, CharSequence string) {
SpannableString s = new SpannableString(string);
s.setSpan(new TypefaceSpan(typeface), 0, s.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
return s;
}
最后,在创建AlertDialog
时设置字体:
Typeface typeface = Typeface.createFromAsset(getActivity().getAssets(), "fonts/your_font.ttf");
new AlertDialog.Builder(getActivity())
.setTitle(FontUtils.typeface(typeface, "The title"))
/* .. */
.create();
答案 2 :(得分:7)
只需使用以下行获取对话框标题的标识符:
int dialogTitle = mCtnx.getResources().getIdentifier( "alertTitle", "id", "android" );
将此项用于android.support.v7.app.AlertDialog
TextView title =(TextView)alertDialog.findViewById(R.id.alertTitle);
答案 3 :(得分:2)
您必须充气或自定义并创建样式并应用于AlertDialog
下面是如何夸大布局并将其应用于AlertDialog
LayoutInflater li = LayoutInflater.from(ctx);
View view = li.inflate(R.layout.formatted_dialog, null);
AlertDialog.Builder builder = new AlertDialog.Builder(ctx);
builder.setTitle("Formatted");
builder.setView(view);
定义您指定的布局中所需的所有格式和样式。
您可以使用膨胀的视图访问布局中定义的特定文本视图,例如
LayoutInflater li = LayoutInflater.from(ctx);
View view = li.inflate(R.layout.formatted_dialog, null);
TextView label=(TextView)view.findViewById(R.id.i_am_from_formatted_layout_lable);
样本布局保存为res / layout / link.xml:
在onCreate()
或您想要呼叫AlertDialog的地方或时间
LayoutInflater li = LayoutInflater.from(this);
View view = li.inflate(R.layout.link, null);
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle("Formatted");
builder.setView(view).create().show();
TextView text=(TextView) findViewById(R.id.text);
如果您使用其他方法调用,则将this
替换为上下文对象。
答案 4 :(得分:2)
这样做:
Dialog dialog = new Dialog(ActivityName.this);
dialog.setContentView(R.layout.dialog_name);
dialog.setCancelable(true);
dialog.findViewById(R.id.text).setTypeface(Typeface.createFromAsset(getAssets(), "font.ttf"));
将您的font.ttf文件放在assets文件夹中,并像上面一样使用它
答案 5 :(得分:2)
您应该在布局中设置自定义视图,而不是设置alertdialog的文本。在执行此操作之前,请修改视图的字体。 试试这个例子
TextView content = new TextView(this);
content.setText("on another font");
content.setTypeface(Typeface.SANS_SERIF);
//使用第一个示例,如果您使用xml生成的视图
AlertDialog.Builder myalert = new AlertDialog.Builder(this);
myalert.setTitle("Your title");
myalert.setView(content);
myalert.setNeutralButton("Close dialog", null);
myalert.setCancelable(true);
myalert.show();
xml的代码...替换xml中的字体
<TextView
android:id="@+id/yourid"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="8dp"
android:text="your content" />
答案 6 :(得分:1)
包含此布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello_World"
android:textColorLink="#FF00FF"
/>
</LinearLayout>
然后在你的活动中使用它
Dialog dialog = new Dialog(ActivityName.this);
dialog.setContentView(R.layout.dialog_name);
dialog.setCancelable(true);
dialog.findViewById(R.id.text).setTypeface(Typeface.createFromAsset(getAssets(), "font.ttf"));
答案 7 :(得分:0)
您可以按照以下代码块更改AlertDialog
的外观:
AlertDialog dialog = new AlertDialog.Builder(this).setMessage("Message").show();
TextView textView = (TextView) dialog.findViewById(android.R.id.message);
textView.setTextSize(10);//to change font size
//to change font family
Typeface face = Typeface.createFromAsset(getAssets(),"font/fontFileName.ttf");
textView.setTypeface(face);
将字体文件放在assets文件夹中。在我的例子中,我创建了一个名为font的子目录。
您还可以查看已接受答案的Question。
答案 8 :(得分:0)
您可以添加此
TextView textViewt = (TextView) alertDialog.findViewById(android.R.id.title);
textViewt.setTypeface(your font typeface);
行后
alertDialog.show();
答案 9 :(得分:0)
你也可以尝试Spannable。
SpannableString s = new SpannableString("My App");
s.setSpan(new TypefaceSpan(this, "font.otf"), 0, s.length(),
Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
s.setSpan(new RelativeSizeSpan(1.3f), 0,s.length(), 0);
builder.setTitle(s)
答案 10 :(得分:0)
有一种简单的方法可以将新的自定义视图设置为对话框的标题。我们可以定义每个自定义视图,例如TextView,并添加一些自定义属性,最后将其设置为对话框的标题,如下所示:
AlertDialog.Builder builder = new AlertDialog.Builder(OrderItemsActivity.this);
TextView title_of_dialog = new TextView(getApplicationContext());
title_of_dialog.setHeight(50);
title_of_dialog.setBackgroundColor(Color.RED);
title_of_dialog.setText("Custom title");
title_of_dialog.setTextSize(TypedValue.COMPLEX_UNIT_SP, 15);
title_of_dialog.setTextColor(Color.WHITE);
title_of_dialog.setGravity(Gravity.CENTER);
builder.setCustomTitle(title_of_dialog);
builder.create().show();
在这里,我定义了一个动态TextView并为其设置了一些属性。最后,我使用&#34; setCustomTitle()&#34;将其设置为对话框的标题。功能
答案 11 :(得分:0)
答案 12 :(得分:-1)
尝试为对话框设置主题。像这样更改字体属性:
<style name="CustomDialog" parent="android:Theme.Dialog">
<item name="android:typeface">serif</item>
</style>
虽然这会更改对话框中所有文字视图的字体。 所以确保TextViews设置为正确的字体
答案 13 :(得分:-1)
TextView tv_message = new TextView(this);
Typeface typeface = Typeface.createFromAsset(
getAssets(),
"fonts/OpenSans-Semibold.ttf"
);
// Set the text view layout parameters
tv_message.setLayoutParams(
new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT)
);
// Set message text color
tv_message.setTextColor(Color.RED);
// Set message gravity/text align
tv_message.setGravity(Gravity.START);
// Set message text size
tv_message.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 16);
// Set message custom font
tv_message.setTypeface(typeface);
// Set message background color
tv_message.setBackgroundColor(Color.YELLOW);
// Set message text padding
tv_message.setPadding(15, 25, 15, 15);
tv_message.setText("Are you sure?");
tv_message.setTextColor(Color.BLACK);