如何在文本视图中显示“\”

时间:2011-06-15 06:22:47

标签: android escaping typeface

我正在使用TypeFace在应用中显示泰米尔语字体。这些字母为"fe;j r\;b ftrk;"

我将它保存在Strings文件中并尝试在UI上检索它。但是"\"逃脱了下一个角色并且我错过了一个角色:(事实上\代表一个字母,我希望\显示。如何做到这一点。

感谢您的提前时间。

我的代码如下

package com.mayuonline.kanthan;

import android.app.Activity;
import android.graphics.Typeface;
import android.os.Bundle;
import android.widget.TextView;

public class WelcomeActivity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        Typeface tf = Typeface.createFromAsset(getAssets(), "font/Bamini.ttf");
        TextView TextViewWelcome = (TextView)findViewById(R.id.textViewWelcome);
        TextViewWelcome.setTypeface(tf);
        TextViewWelcome.setText(R.string.WelcomeTitle);
       }
}

1 个答案:

答案 0 :(得分:4)

您需要使用两次\来逃避"fe;j r\\;b ftrk;"\。这将在字符串中插入一个{{1}}。