天天看點

android通過代碼設定鈴聲_34、Android字型預設字型設定方式

預設字型

Android SDK自帶了四種字型:"normal"“monospace",“sans”, “serif”,如下:

android通過代碼設定鈴聲_34、Android字型預設字型設定方式

設定方式

1.通過XML檔案設定

"wrap_content"android:layout_height="wrap_content"android:text="monospace"android:textSize="20dp"android:textColor="#000000"android:typeandroid:layout_margin="5dp"/>
           

2.Java代碼中設定

TextView txtNormal = (TextView) findViewById(R.id.txt_normal);    txtNormal.setTypeface(Typeface.MONOSPACE);
           

三方字型

在android中,您可以為應用程式中的字元串定義自己的自定義字型。您隻需從Internet下載下傳所需的字型,然後将其放在assets / fonts檔案夾中。

将字型放在fonts檔案夾下的assets檔案夾中後,可以通過Typeface類在java代碼中通路它。首先,在代碼中擷取文本視圖的引用。其文法如下 -

TextView tx = (TextView)findViewById(R.id.textview1);
           

接下來你需要做的是調用Typeface類的靜态方法 createFromAsset() 來從資産中擷取自定義字型。其文法如下 -

Typeface custom_font = Typeface.createFromAsset(getAssets(), "fonts/font name.ttf");
           

您需要做的最後一件事是将此自定義字型對象設定為TextView字型屬性。您需要調用 setTypeface() 方法來執行此操作。其文法如下 -

tx.setTypeface(custom_font);
           

除了這些方法之外,還有其他方法在Typeface類中定義,您可以使用它們更有效地處理字型。

序号 方法和描述
1

create(String familyName,int style)

給定一個姓氏和選項樣式資訊,建立一個Typeface對象

2

create(Typeface family, int style)

建立一個與指定的現有Typeface和指定Style最比對的Typeface對象

3

createFromFile(String path)

從指定的字型檔案建立新的字型

4

defaultFromStyle(int style)

根據指定的樣式傳回預設的Typeface對象之一

5

getStyle()

傳回Typeface的内部樣式屬性

這是一個示範使用Typeface來處理CustomFont的示例。它建立一個基本應用程式,顯示您在fonts檔案中指定的自定義字型。

要試驗此示例,您可以在實際裝置或模拟器中運作此示例。

序号 描述
1 您将使用Android studio IDE在com.example.sairamkrishna.myapplication包下建立Android應用程式。
2 從網際網路下載下傳字型并将其放在assets / fonts檔案夾下。
3 修改src / MainActivity.java檔案以添加必要的代碼。
4 修改res / layout / activity_main以添加相應的XML元件
5 運作應用程式并選擇正在運作的Android裝置并在其上安裝應用程式并驗證結果

在進入代碼部分之前,在Windows資料總管的assests檔案夾中添加字型。

android通過代碼設定鈴聲_34、Android字型預設字型設定方式

以下是已修改的主活動檔案 MainActivity.java 的内容 。

package com.example.sairamkrishna.myapplication;import android.graphics.Typeface;import android.support.v7.app.ActionBarActivity;import android.os.Bundle;import android.widget.TextView;public class MainActivity extends ActionBarActivity {TextView tv1,tv2;protected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);tv1=(TextView)findViewById(R.id.textView3);tv2=(TextView)findViewById(R.id.textView4);Typeface font/font.ttf");tv1.setTypeface(face);Typeface face1= Typeface.createFromAsset(getAssets(), "font/font1.ttf");tv2.setTypeface(face1);}}
           

以下是xml activity_main.xml 的修改内容。

<?xml version="1.0" encoding="utf-8"?>xmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"android:paddingLeft="@dimen/activity_horizontal_margin"android:paddingRight="@dimen/activity_horizontal_margin"android:paddingTop="@dimen/activity_vertical_margin"android:paddingBottom="@dimen/activity_vertical_margin"tools:context=".MainActivity">android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="Typeface"android:id="@+id/textView"android:layout_alignParentTop="true"android:layout_centerHorizontal="true"android:textSize="30dp" />android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="Tutorials Point"android:id="@+id/textView2"android:layout_below="@+id/textView"android:layout_centerHorizontal="true"android:textSize="35dp"android:textColor="#ff16ff01" />android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="Tutorials Point"android:id="@+id/textView3"android:layout_centerVertical="true"android:textSize="45dp"android:layout_alignParentRight="true"android:layout_alignParentEnd="true"android:layout_alignParentLeft="true"android:layout_alignParentStart="true" />android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="Tutorials Point"android:id="@+id/textView4"android:layout_below="@+id/textView3"android:layout_alignLeft="@+id/textView3"android:layout_alignStart="@+id/textView3"android:layout_marginTop="73dp"android:textSize="45dp" />
           

以下是 res / values / string.xml 的内容 。

name="app_name">My Application
           

以下是 AndroidManifest.xml 檔案的内容。

<?xml version="1.0" encoding="utf-8"?>xmlns:android="http://schemas.android.com/apk/res/android"package="com.example.sairamkrishna.myapplication" >android:allowBackup="true"android:icon="@mipmap/ic_launcher"android:label="@string/app_name"android:theme="@style/AppTheme" >android:name=".MainActivity"android:label="@string/app_name" >android:name="android.intent.action.MAIN" />android:name="android.intent.category.LAUNCHER" />
           

讓我們嘗試運作我們剛剛修改過的自定義字型應用程式。我假設您在進行環境設定時建立了 AVD 。要從Android工作室運作應用程式,打開項目的一個活動檔案,然後單擊工具欄中的“運作” 

android通過代碼設定鈴聲_34、Android字型預設字型設定方式

圖示.Android工作室在您的AVD上安裝應用程式并啟動它,如果您的設定和應用程式一切正常,它将顯示以下模拟器視窗

android通過代碼設定鈴聲_34、Android字型預設字型設定方式

正如您所看到的,AVD上顯示的文本沒有預設的Android字型,而是它具有您在fonts檔案夾中指定的自定義字型。

注 - 使用自定義字型時,需要注意字型支援的大小和字元。