我想在视图上显示波斯语(波斯语)数字。例如,我计算了一个日期并将其转换为Jalali日历,但我如何用波斯数字显示它?
答案 0 :(得分:13)
通过使用Typeface类,视图的字体类型可以更改为Farsi字体,因此数字可以通过Farsi字体显示:
Typeface typeface = Typeface.createFromAsset(getAssets(), "FarsiFontName.ttf");
myView.setTypeface(typeface);
答案 1 :(得分:3)
您可以创建自定义视图并附加波斯语字体,最后您可以在xml视图上使用它。最近的波斯语字体在字符映射中没有英文编号,您可以毫无问题地使用它。例如:
public class TextViewStyle extends TextView {
public TextViewStyle(Context context) {
super(context);
init(context, null, 0);
}
public TextViewStyle(Context context, AttributeSet attrs) {
this(context, attrs, 0);
init(context, attrs, 0);
}
public TextViewStyle(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
init(context, attrs, defStyle);
}
private void init(Context context, AttributeSet attrs, int defStyle){
try {
TypedArray a = context.obtainStyledAttributes(attrs,R.styleable.TextViewStyle, defStyle, 0);
String str = a.getString(R.styleable.TextViewStyle_fonttype);
switch (Integer.parseInt(str)) {
case 0:
str = "fonts/byekan.ttf";
break;
case 1:
str = "fonts/bnazanin.ttf";
break;
case 2:
str = "fonts/btitr.ttf";
break;
case 3:
str = "fonts/mjbeirut.ttf";
break;
case 4:
str = "fonts/bnazanin_bold.ttf";
break;
default:
str = "fonts/bnazanin.ttf";
break;
}
setTypeface(FontManager.getInstance(getContext()).loadFont(str));
} catch (Exception e) {
e.printStackTrace();
}
}
}
attr.xml:
<declare-styleable name="TextViewStyle">
<attr name="selected_background" format="integer"/>
<attr name="fonttype">
<enum name="byekan" value="0"/>
<enum name="bnazanin" value="1"/>
<enum name="btitr" value="2"/>
<enum name="mjbeirut" value="3"/>
<enum name="bnazaninBold" value="4"/>
</attr>
</declare-styleable>
答案 2 :(得分:3)
将语言环境设置为阿拉伯语,埃及
int i = 25;
NumberFormat nf = NumberFormat.getInstance(new Locale("ar","EG"));
nf.format(i);
答案 3 :(得分:1)
您可以使用Time4J显示日期,并使用ChronoFormatter
显示:
ChronoFormatter<PersianCalendar> formatter= ChronoFormatter.setUp(PersianCalendar.axis(), PERSIAN_LOCALE)
.addPattern("dd", PatternType.CLDR).build();
// it will display day : ۲۴
或
.addPattern("dd MMMM", PatternType.CLDR).build();
// مرداد ۲۴
通过定义模式,您可以选择日期显示方式:ChronoFormatter
答案 4 :(得分:1)
Kotlin Version
通过Extension Property
如果要显示波斯语中的每种数字( eg Int
,Double
,Float
, etc )或阿拉伯数字,使用这些扩展名属性确实有帮助:
/**
* @author aminography
*/
val Number.withPersianDigits: String
get() = "$this".withPersianDigits
val String.withPersianDigits: String
get() = StringBuilder().also { builder ->
toCharArray().forEach {
builder.append(
when {
Character.isDigit(it) -> PERSIAN_DIGITS["$it".toInt()]
it == '.' -> "/"
else -> it
}
)
}
}.toString()
private val PERSIAN_DIGITS = charArrayOf(
'0' + 1728,
'1' + 1728,
'2' + 1728,
'3' + 1728,
'4' + 1728,
'5' + 1728,
'6' + 1728,
'7' + 1728,
'8' + 1728,
'9' + 1728
)
println("Numerical 15 becomes: " + 15.withPersianDigits)
println("Numerical 2.75 becomes: " + 2.75.withPersianDigits)
println("Textual 470 becomes: " + "470".withPersianDigits)
println("Textual 3.14 becomes: " + "3.14".withPersianDigits)
Numerical 15 becomes: ۱۵
Numerical 2.75 becomes: ۲/۷۵
Textual 470 becomes: ۴۷۰
Textual 3.14 becomes: ۳/۱۴
答案 5 :(得分:0)
您可以使用以下方法以波斯语显示数字:
public String NumToPersion(String a){
String[] pNum =new String[]{"۰","۱","۲","۳","۴","۵","۶","۷","۸","۹" };
a=a.replace("0",pNum[0]);
a=a.replace("1",pNum[1]);
a=a.replace("2",pNum[2]);
a=a.replace("3",pNum[3]);
a=a.replace("4",pNum[4]);
a=a.replace("5",pNum[5]);
a=a.replace("6",pNum[6]);
a=a.replace("7",pNum[7]);
a=a.replace("8",pNum[8]);
a=a.replace("9",pNum[9]);
return a;
}
答案 6 :(得分:0)
只需在kotlin中为无符号整数执行
fun toPersian(n:Int) : String{
val p="۰۱۲۳۴۵۶۷۸۹"
return n.toString().trim().map{
p[it.toString().trim().toInt()]
}.joinToString()
}
txt_view?.text=toPersian(12087)//۱۲۰۸۷
答案 7 :(得分:0)
简单而正确的方法是使用Locale
和String.format
。如果默认字体不支持波斯语数字,您可以简单地为视图使用波斯语字体。这是我将如何做到的。
Locale locale = new Locale("fa");
return String.format(locale, "%04d", year) + "/" +
String.format(locale, "%02d", month) + "/" +
String.format(locale, "%02d", day);
您还可以使用PersianCaldroid库,它不仅为您提供简单的API,如PersianDate.toStringInPersian()
,还可以让您拥有波斯语DatePicker和CalendarView。
答案 8 :(得分:0)
在键入EditText时尝试此操作:
public static void edtNumE2P(final EditText edt) {
edt.addTextChangedListener(new TextWatcher() {
@Override
public void onTextChanged(CharSequence s, int pstart, int pbefore, int pcount) {
// for (String chr : new String[]{"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"}) {
for (char chr : "0123456789".toCharArray()) {
if (s.toString().contains("" + chr)) {
edt.setText(MyUtils.numE2P(edt.getText().toString()));
edt.setSelection(edt.getText().length());
}
}
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
@Override
public void afterTextChanged(Editable s) {
}
});
}
试试这个:
public static String numE2P(String str, boolean reverse) {
String[][] chars = new String[][]{
{"0", "۰"},
{"1", "۱"},
{"2", "۲"},
{"3", "۳"},
{"4", "۴"},
{"5", "۵"},
{"6", "۶"},
{"7", "۷"},
{"8", "۸"},
{"9", "۹"}
};
for (String[] num : chars) {
if (reverse) {
str = str.replace(num[1], num[0]);
} else {
str = str.replace(num[0], num[1]);
}
}
// Log.v("numE2P", str);
return str;
}
答案 9 :(得分:0)
最简单,最简单的方法是使用NumberFormat:
NumberFormat numberFormat = NumberFormat.getInstance(new Locale("fa","IR"));
textView.setText(numberFormat.format(15000))
答案 10 :(得分:-1)
您必须在Windows中添加波斯语标准键盘,并在您想键入波斯语数字和单词时更改为此键盘。 这对我有用