>我已经在可绘制文件夹下定义了字体文件夹和xml文件。我正在使用对话,并定义了对话外观的List_view.xml
和List_item.xml
;但是,list_item.xml
中定义的自定义字体在出现对话框时未加载;显示默认的安卓字体。
我尝试更改整个应用程序的默认字体,但对话框仍然加载默认字体。
默认对话框
字体我想在对话框中使用此字体
public void showDialogListView(View view) {
dialog = new Dialog(personal_info_1.this);
dialog.setContentView(R.layout.list_view);
dialog.setTitle("Select Country");
dialog.setCancelable(true);
dialog.setCanceledOnTouchOutside(true);
//prepare a list view in dialog
listview_country = dialog.findViewById(R.id.dialogList);
ArrayAdapter adapter = new ArrayAdapter(getApplicationContext(), R.layout.list_item, R.id.txtitem, country_name);
listview_country.setAdapter(adapter);
listview_country.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView parent, View view, int position, long id) {
//Toast.makeText(personal_info_1.this, "Clicked Item: " + parent.getItemAtPosition(position).toString(), Toast.LENGTH_SHORT).show();
textview_country_info.setText(parent.getItemAtPosition(position).toString());
dialog.dismiss();
}
});
dialog.show();
}
在这里,数组适配器中的数组country_name
是从 onCreate 中的数据库方法获取的。
list_item.xml :
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:id="@+id/txtitem"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fontFamily="@font/quicksand_light"
android:padding="10dp"
android:text="Text"
android:textSize="16sp" />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:background="@color/line_light"
/>
list_view.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ListView
android:id="@+id/dialogList"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/listview_background"></ListView>
</LinearLayout>
我在这里发布的最简单的方法之一,请看一下。
您只需删除"list_item.xml文件"的文本视图中的"android:fontfamily"元素,然后执行以下操作。
1.在res/font/中创建一个字体文件夹,然后2.您只需在res/values/style中提及.xml如下所示-(只需将字体系列项添加到资源中)
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="android:fontFamily">@font/ubuntu_regular</item>
<item name="fontFamily">@font/ubuntu_regular</item>
</style>
<style name="AppTheme.NoActionBar">
<item name="android:fontFamily">@font/ubuntu_regular</item>
<item name="fontFamily">@font/ubuntu_regular</item>
</style>
3.然后,您只需运行基于此样式的代码.xml字体将自动应用于整个应用程序。您无需在应用程序中的任何位置添加字体系列。
您可以创建扩展文本视图的 CustomTextView 类,并在.xml文件中使用该 CustomTextView 类,而不是简单
import android.annotation.SuppressLint;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Typeface;
import android.support.annotation.Nullable;
import android.util.AttributeSet;
import android.widget.TextView;
@SuppressLint("AppCompatCustomView")
public class CustomTextView extends TextView {
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
}
public CustomTextView(Context context) {
super(context);
if (!isInEditMode()) {
Typeface face = Typeface.createFromAsset(context.getAssets(),
"fonts/OpenSansSemiBold.ttf");
this.setTypeface(face);
}
}
public CustomTextView(Context context, AttributeSet attrs) {
super(context, attrs);
if (!isInEditMode()) {
Typeface face = Typeface.createFromAsset(context.getAssets(),
"fonts/OpenSansSemiBold.ttf");
this.setTypeface(face);
}
}
public CustomTextView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
if (!isInEditMode()) {
Typeface face = Typeface.createFromAsset(context.getAssets(),
"fonts/OpenSansSemiBold.ttf");
this.setTypeface(face);
}
}
}
在您的.xml:
<app.com.packagename.CustomTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="text"/>