Как получить гарнитуру по умолчанию для устройства Android?

У меня есть класс API внутри моего приложения; внутри класса API есть пользовательский шрифт, который был настроен как статический, например

    public static Typeface font_short;

        @SuppressWarnings("deprecation")
        public Api(Context c , Display d)
        {
            this.context = c ;

    //I want to change this if user wants to keep using System font style or my custom style
    if ( keep_curren == true )
    {
    font_title   =  //What to add here to get Default fonts Typeface
    }else
//use my costume font
    {
    font_title   =  Typeface.createFromAsset(context.getAssets(),"fonts/custome.ttf");
    }

                     display = d; 

             w = display.getWidth();  // deprecated
                 h = display.getHeight();  // deprecated       
        }

Я хочу получить значение по умолчанию и текущий шрифт устройства, если пользователь не хочет использовать мой собственный шрифт!

в классе деятельности

TextView blaaa       = (TextView) findViewById(R.id.blaaa);
//change to custome font style or keep current font style
blaaa.setTypeface(Api.font_title);

Есть идеи?

Ответы на вопрос(1)

Ваш ответ на вопрос