gpt4 book ai didi

java - API 级别 15 的印地语字体(又名 Android 4.0.2)

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:05:16 25 4
gpt4 key购买 nike

我有一个基于印地语内容的 Android 应用程序,并使用了来自 Android API 16 SDK 的 devangiri 字体并重命名为 hindi.ttf。文本在 API 级别 16 和 17 上呈现良好,但在 Android API 级别 15 和更低级别中简单地撕裂。

为什么我可以在不移除对较低 API 级别的支持的情况下解决这个问题。我设置 textview 的代码是:

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

public class Prayer extends Activity {

// TextSwitcher vs;
GestureDetector gestureDetector;
static Tips tip = null;
static StringBuilder quesString = null;

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

setContentView(R.layout.prayer);

TextView tv1 = (TextView) findViewById(R.id.textView1);
Typeface tf = Typeface.createFromAsset(getAssets(), "fonts/hindi.ttf");
tv1.setTypeface(tf);
tv1.setText("श्री");
tv1.setPaintFlags(tv1.getPaintFlags() | Paint.SUBPIXEL_TEXT_FLAG);
}
}

布局 XML:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#C5C6E1"
tools:context=".Prayer" >
<TextView
android:id="@+id/textView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
</TextView>
</RelativeLayout>

当前: enter image description here

预期: enter image description here

最佳答案

我在开发印地语应用程序时遇到了完全类似的问题。但是,当我更改字体文件时错误解决了。

此外,恕我直言,设备只是将文本中的 UTF-8 符号替换为字体文件中的相应符号。在这种情况下,它完全显示了一个完全不同的符号。所以,问题应该出在字体文件上。

如果您想使用我的字体文件,请给我您的电子邮件。

关于java - API 级别 15 的印地语字体(又名 Android 4.0.2),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16108088/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com