我正在尝试更改Application标签的字体(我在我的应用程序中使用ActionBarSherlock作为库项目)并获取错误。
以下是代码片段,我试图在setContentView()之后将存储在资源中的外部字体设置为app标签。
mAppName = (TextView) findViewById(R.id.abs__action_bar_title);
Typeface face = Typeface.createFromAsset(getAssets(), "fonts/handsean.ttf");
mAppName.setTypeface(face);
以下是logcat的错误。错误似乎出现在mAppName.setTypeface(face)行上。
E/AndroidRuntime(18762): FATAL EXCEPTION: main
E/AndroidRuntime(18762): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.cheats/com.cheats.LandingPage}: java.lang.NullPointerException
E/AndroidRuntime(18762): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2180)
E/AndroidRuntime(18762): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2230)
E/AndroidRuntime(18762): at android.app.ActivityThread.access$600(ActivityThread.java:141)
E/AndroidRuntime(18762): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1234)
E/AndroidRuntime(18762): at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime(18762): at android.os.Looper.loop(Looper.java:137)
E/AndroidRuntime(18762): at android.app.ActivityThread.main(ActivityThread.java:5039)
E/AndroidRuntime(18762): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime(18762): at java.lang.reflect.Method.invoke(Method.java:511)
E/AndroidRuntime(18762): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:793)
E/AndroidRuntime(18762): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:560)
E/AndroidRuntime(18762): at dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime(18762): Caused by: java.lang.NullPointerException
E/AndroidRuntime(18762): at com.cheats.LandingPage.onCreate(LandingPage.java:89)
E/AndroidRuntime(18762): at android.app.Activity.performCreate(Activity.java:5104)
E/AndroidRuntime(18762): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1080)
E/AndroidRuntime(18762): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2144)
我在abs__action_bar_title_item.xml中找到了应用程序标签的文本视图的以下声明:
<TextView android:id="@+id/abs__action_bar_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:singleLine="true"
android:ellipsize="end" />
这是正确的方法吗?或者我错过了什么?可以提一些建议吗?
感谢您的时间。
答案 0 :(得分:16)
经过大量试验,我能够以下面的方式获得textView的引用,现在字体已经改变了:
int titleId = Resources.getSystem().getIdentifier("action_bar_title", "id", "android");
if(titleId == 0)
titleId = com.actionbarsherlock.R.id.abs__action_bar_title;
mAppName = (TextView) findViewById(titleId);
Typeface face = Typeface.createFromAsset(getAssets(), "fonts/handsean.ttf");
mAppName.setTypeface(face);
答案 1 :(得分:0)
在Xamarin.Android(MonoDroid - C#)中:
如果您在null
上获得TextView
时遇到问题,可能是因为Android版本,上面的代码适用于Android 4.2,但没有使用3.1。
这对我有用:
TextView title = FindViewById<TextView>(Resources.GetIdentifier("action_bar_title", "id", "android"));
if (title == null) title = FindViewById<TextView>(Resource.Id.abs__action_bar_title);
if( title != null)
{
Android.Graphics.Typeface face = Android.Graphics.Typeface.CreateFromAsset(Assets, "fonts/font.otf");
title.SetTypeface(face, Android.Graphics.TypefaceStyle.Bold);
}
答案 2 :(得分:0)
Abhishek Sabbarwal提供的解决方案工作得很好(&lt; 3.x和&gt; = 4.x)但是,在一个案例中,Honeycomb,它找不到Textview,就像查尔斯博克指出的那样。
调试后,似乎这一行给出了一个肯定的titleId,但它与TextView不匹配。
int titleId = Resources.getSystem().getIdentifier("action_bar_title", "id", "android");
但是,使用此行,已成功找到TextView
titleId = R.id.abs__action_bar_title;
因此,这是我的代码适用于任何版本
int titleId = Resources.getSystem().getIdentifier("action_bar_title", "id", "android");
if(titleId == 0 || (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB && Build.VERSION.SDK_INT < Build.VERSION_CODES.ICE_CREAM_SANDWICH))
{
titleId = R.id.abs__action_bar_title;
}
final TextView appName = (TextView) findViewById(titleId);