Dodałem niestandardowy plik czcionki do folderu zasobów / czcionek. Jak go używać z mojego XML?
Mogę go użyć z kodu w następujący sposób:
TextView text = (TextView) findViewById(R.id.textview03);
Typeface tf = Typeface.createFromAsset(getAssets(), "fonts/Molot.otf");
text.setTypeface(tf);
Nie mogę tego zrobić z XML za pomocą android:typeface="/fonts/Molot.otf"
atrybutu?
Odpowiedzi:
Krótka odpowiedź: nie. Android nie ma wbudowanej obsługi stosowania niestandardowych czcionek do widżetów tekstowych za pośrednictwem XML.
Istnieje jednak obejście, które nie jest strasznie trudne do wdrożenia.
Pierwszy
Musisz zdefiniować własny styl. W folderze / res / values otwórz / utwórz plik attrs.xml i dodaj zadeklarowany obiekt w stylu:
<?xml version="1.0" encoding="utf-8"?> <resources> <declare-styleable name="FontText"> <attr name="typefaceAsset" format="string"/> </declare-styleable> </resources>
druga
Zakładając, że chcesz często używać tego widżetu, powinieneś skonfigurować prostą pamięć podręczną dla ładowanych
Typeface
obiektów, ponieważ ładowanie ich z pamięci w locie może zająć trochę czasu. Coś jak:public class FontManager { private static FontManager instance; private AssetManager mgr; private Map<String, Typeface> fonts; private FontManager(AssetManager _mgr) { mgr = _mgr; fonts = new HashMap<String, Typeface>(); } public static void init(AssetManager mgr) { instance = new FontManager(mgr); } public static FontManager getInstance() { if (instance == null) { // App.getContext() is just one way to get a Context here // getContext() is just a method in an Application subclass // that returns the application context AssetManager assetManager = App.getContext().getAssets(); init(assetManager); } return instance; } public Typeface getFont(String asset) { if (fonts.containsKey(asset)) return fonts.get(asset); Typeface font = null; try { font = Typeface.createFromAsset(mgr, asset); fonts.put(asset, font); } catch (Exception e) { } if (font == null) { try { String fixedAsset = fixAssetFilename(asset); font = Typeface.createFromAsset(mgr, fixedAsset); fonts.put(asset, font); fonts.put(fixedAsset, font); } catch (Exception e) { } } return font; } private String fixAssetFilename(String asset) { // Empty font filename? // Just return it. We can't help. if (TextUtils.isEmpty(asset)) return asset; // Make sure that the font ends in '.ttf' or '.ttc' if ((!asset.endsWith(".ttf")) && (!asset.endsWith(".ttc"))) asset = String.format("%s.ttf", asset); return asset; } }
Ten pozwoli ci używać rozszerzeń plików .ttc, ale nie jest przetestowany.
Trzeci
Utwórz nową klasę, która zawiera podklasy
TextView
. Ten szczególny przykład uwzględnia określony krój (XMLbold
,italic
itp) i zastosować go do czcionki (zakładając, że używasz .ttc pliku)./** * TextView subclass which allows the user to define a truetype font file to use as the view's typeface. */ public class FontText extends TextView { public FontText(Context context) { this(context, null); } public FontText(Context context, AttributeSet attrs) { this(context, attrs, 0); } public FontText(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); if (isInEditMode()) return; TypedArray ta = context.obtainStyledAttributes(attrs, R.styleable.FontText); if (ta != null) { String fontAsset = ta.getString(R.styleable.FontText_typefaceAsset); if (!TextUtils.isEmpty(fontAsset)) { Typeface tf = FontManager.getInstance().getFont(fontAsset); int style = Typeface.NORMAL; float size = getTextSize(); if (getTypeface() != null) style = getTypeface().getStyle(); if (tf != null) setTypeface(tf, style); else Log.d("FontText", String.format("Could not create a font from asset: %s", fontAsset)); } } } }
Wreszcie
Zastąp wystąpienia
TextView
w pliku XML w pełni kwalifikowaną nazwą klasy. Zadeklaruj swoją niestandardową przestrzeń nazw, tak jak w przypadku przestrzeni nazw systemu Android. Zwróć uwagę, że „typefaceAsset” powinien wskazywać na plik .ttf lub .ttc zawarty w katalogu / asset.<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:custom="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent"> <com.example.FontText android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="This is a custom font text" custom:typefaceAsset="fonts/AvenirNext-Regular.ttf"/> </RelativeLayout>
źródło
Oto przykładowy kod, który to robi. Mam czcionkę zdefiniowaną w statycznej zmiennej końcowej, a plik czcionki znajduje się w katalogu zasobów.
public class TextViewWithFont extends TextView { public TextViewWithFont(Context context, AttributeSet attrs) { super(context, attrs); this.setTypeface(MainActivity.typeface); } public TextViewWithFont(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); this.setTypeface(MainActivity.typeface); } public TextViewWithFont(Context context) { super(context); this.setTypeface(MainActivity.typeface); } }
źródło
Utwórz niestandardowy TextView należący do czcionki, której chcesz użyć. W tej klasie używam statycznego pola mTypeface do buforowania kroju pisma (dla lepszej wydajności)
public class HeliVnTextView extends TextView { /* * Caches typefaces based on their file path and name, so that they don't have to be created every time when they are referenced. */ private static Typeface mTypeface; public HeliVnTextView(final Context context) { this(context, null); } public HeliVnTextView(final Context context, final AttributeSet attrs) { this(context, attrs, 0); } public HeliVnTextView(final Context context, final AttributeSet attrs, final int defStyle) { super(context, attrs, defStyle); if (mTypeface == null) { mTypeface = Typeface.createFromAsset(context.getAssets(), "HelveticaiDesignVnLt.ttf"); } setTypeface(mTypeface); } }
W pliku xml:
<java.example.HeliVnTextView android:id="@+id/textView1" android:layout_width="0dp" ... />
W klasie java:
HeliVnTextView title = new HeliVnTextView(getActivity()); title.setText(issue.getName());
źródło
Działanie implementuje LayoutInflater.Factory2, który zapewnia wywołania zwrotne dla każdego utworzonego widoku. Możliwe jest nadanie stylu TextView niestandardowego atrybutu rodziny czcionek, wczytanie krojów na żądanie i automatyczne wywołanie setTypeface w przypadku widoków tekstu z wystąpieniami.
Niestety ze względu na architektoniczne powiązanie instancji Inflater w stosunku do działań i systemu Windows najprostszym podejściem do używania niestandardowych czcionek w systemie Android jest buforowanie załadowanych czcionek na poziomie aplikacji.
Przykładowa baza kodu znajduje się tutaj:
https://github.com/leok7v/android-textview-custom-fonts
<style name="Baroque" parent="@android:style/TextAppearance.Medium"> <item name="android:layout_width">fill_parent</item> <item name="android:layout_height">wrap_content</item> <item name="android:textColor">#F2BAD0</item> <item name="android:textSize">14pt</item> <item name="fontFamily">baroque_script</item> </style> <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:custom="http://schemas.android.com/apk/res/custom.fonts" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" > <TextView style="@style/Baroque" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/sample_text" />
prowadzi do
źródło
Używanie niestandardowych czcionek w xml nie jest dobrym pomysłem , ponieważ musisz to zrobić programowo, aby uniknąć wycieku pamięci!
źródło
Może możesz użyć refleksji, aby wstrzyknąć / zhakować czcionkę do statycznej listy dostępnych czcionek podczas tworzenia aplikacji? Interesują mnie opinie innych, jeśli to naprawdę zły pomysł lub świetne rozwiązanie - wydaje się, że będzie to jedna z tych skrajności ...
Udało mi się wstrzyknąć mój niestandardowy krój na listę krojów systemowych z własną nazwą rodziny czcionek, a następnie określić tę niestandardową nazwę rodziny czcionek („brush-script”) jako wartość android: FontFamily na standardowym TextView działającym na moim LG G4 z systemem Android 6.0.
public class MyApplication extends android.app.Application { @Override public void onCreate() { super.onCreate(); Typeface font = Typeface.createFromAsset(this.getResources().getAssets(),"fonts/brush-script.ttf"); injectTypeface("brush-script", font); } private boolean injectTypeface(String fontFamily, Typeface typeface) { try { Field field = Typeface.class.getDeclaredField("sSystemFontMap"); field.setAccessible(true); Object fieldValue = field.get(null); Map<String, Typeface> map = (Map<String, Typeface>) fieldValue; map.put(fontFamily, typeface); return true; } catch (Exception e) { Log.e("Font-Injection", "Failed to inject typeface.", e); } return false; } }
W moim układzie
<TextView android:id="@+id/name" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Fancy Text" android:fontFamily="brush-script"/>
źródło
MyApplication
trzeba wezwać klasę?public class CustomTextView extends TextView { private static final String TAG = "TextView"; public CustomTextView(Context context) { super(context); } public CustomTextView(Context context, AttributeSet attrs) { super(context, attrs); setCustomFont(context, attrs); } public CustomTextView(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); setCustomFont(context, attrs); } private void setCustomFont(Context ctx, AttributeSet attrs) { TypedArray a = ctx.obtainStyledAttributes(attrs, R.styleable.CustomTextView); String customFont = a.getString(R.styleable.CustomTextView_customFont); setCustomFont(ctx, customFont); a.recycle(); } public boolean setCustomFont(Context ctx, String fontName) { Typeface typeface = null; try { if(fontName == null){ fontName = Constants.DEFAULT_FONT_NAME; } typeface = Typeface.createFromAsset(ctx.getAssets(), "fonts/" + fontName); } catch (Exception e) { Log.e(TAG, "Unable to load typeface: "+e.getMessage()); return false; } setTypeface(typeface); return true; } }
i dodaj deklarację w attrs.xml
<declare-styleable name="CustomTextView"> <attr name="customFont" format="string"/> </declare-styleable>
a następnie dodaj swój customFont jak
app:customFont="arial.ttf"
źródło
Wiem, że to stare pytanie, ale znalazłem znacznie łatwiejsze rozwiązanie.
Najpierw jak zwykle zadeklaruj swój TextView w formacie XML. Umieść swoją czcionkę (TTF lub TTC) w folderze zasobów
Następnie po prostu ustaw krój pisma dla widoku tekstu w metodzie onCreate.
@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_name); TextView textView = findViewById(R.id.my_textView); Typeface typeface = Typeface.createFromAsset(getAssets(), "fontName.ttf"); textView.setTypeface(typeface); }
Gotowe.
źródło
Najlepszym rozwiązaniem jest użycie (ostatecznie) wprowadzonej przez Google natywnej funkcji niestandardowej czcionki w XML. Ale musisz celować w API 26. Obsługuje API 16+
https://developer.android.com/guide/topics/ui/look-and-feel/fonts-in-xml
źródło
zamiast xmlns: custom = "schemas.android.com/tools"; powinieneś użyć: xmlns: custom = "schemas.android.com/apk/res-auto"; w celu użycia atrybutów stylizowanych. Dokonałem tej zmiany i teraz działa.
źródło