我开发了一个Android自定义键盘。我需要在键盘上使用自己的字体或自定义字体,但需要在edittext上输出。 实际上我的键盘就像你在whatsapp或messanger上输入任何消息时使用的弹出式键盘。 当您在手机上单击edittext时,会弹出键盘。我试图开发的键盘需要一些其他字体并创建它。知道我想使用ttf文件作为键盘输出文本,就像当我按键盘上按键时我的自定义字体将出现在edittext上。
import java.lang.reflect.Field;
import android.content.Context;
import android.graphics.Typeface;
public final class FontsOverride {
public static void setDefaultFont(Context context,
String staticTypefaceFieldName, String fontAssetName) {
final Typeface regular = Typeface.createFromAsset(context.getAssets(),
fontAssetName);
replaceFont(staticTypefaceFieldName, regular);
}
protected static void replaceFont(String staticTypefaceFieldName,
final Typeface newTypeface) {
try {
final Field staticField = Typeface.class
.getDeclaredField(staticTypefaceFieldName);
staticField.setAccessible(true);
staticField.set(null, newTypeface);
} catch (NoSuchFieldException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
}
}
}
和应用程序类。
public final class Application extends android.app.Application {
@Override
public void onCreate() {
super.onCreate();
FontsOverride.setDefaultFont(this, "DEFAULT",
"fonts/shorthandfont.ttf");
FontsOverride.setDefaultFont(this, "MONOSPACE",
"fonts/shorthandfont.ttf");
}
}
并显示为
<application android:name=".Application"
android:allowBackup="false"
android:installLocation="internalOnly"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service android:name=".MyInputClass"
android:label="@string/simple_ime"
android:permission="android.permission.BIND_INPUT_METHOD"
>
<meta-data android:name="android.view.im" android:resource="@xml/method"/>
<intent-filter>
<action android:name="android.view.InputMethod" />
</intent-filter>
</service>
</application>
我需要你的帮助吗?