自定义字体未加载到对话框的listView中

时间:2019-01-10 11:38:21

标签: android xml listview textview android-dialog

我在drawable文件夹下定义了字体文件夹和xml文件。我正在使用对话并为对话的出现定义了List_view.xmlList_item.xml;但是,在对话框出现时,不会加载list_item.xml中定义的自定义字体;显示默认的android字体。

我试图更改整个应用程序的默认字体,但对话框仍会加载默认字体。

default-font-in-dialogue
i want to use this font in dialog



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>

2 个答案:

答案 0 :(得分:0)

我在这里发布的最简单的方法之一,请看一下。

您只需在“ list_item.xml文件”的textview中删除“ 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。然后,您只需运行此基于style.xml的字体的代码即可自动应用于整个应用程序。您无需在应用程序中的任何位置添加字体家族。

答案 1 :(得分:0)

您可以创建扩展TextView的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"/>