5

我知道如何为操作栏设置自定义字体。我只需要像这样扩展 SherlockFragmentActivity 并覆盖 setTitle:

@Override
public void setTitle(CharSequence title) {
    String str = String.valueOf(title);
    str = str.toUpperCase(Locale.getDefault());
    SpannableString s = new SpannableString(str);
    MetricAffectingSpan span = new MetricAffectingSpan() {
        @Override
        public void updateMeasureState(TextPaint p) {
            p.setTypeface(FontManager.INSTANCE.getAppFont());
        }

        @Override
        public void updateDrawState(TextPaint tp) {
            tp.setTypeface(FontManager.INSTANCE.getAppFont());
        }
    };

    s.setSpan(span, 0, s.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);

    getSupportActionBar().setTitle(s);
}

但是,上下文操作栏会使事情变得复杂。该库使用工厂返回上下文操作栏,如下所示:

ActionMode mode = getSherlockActivity().startActionMode(mActionModeCallback);
mode.setTitle("whatever");

我可以覆盖 ActionMode,但 lib 不会返回它。

有任何想法吗?

4

3 回答 3

4

我看有点复杂...

您将需要创建一个View放置TextView标题的位置,为此设置所需的字体TextView,并使用setCustomView新字体放置视图。

我希望它对你有帮助。

更新

您是否尝试过创建自己的方法,如下所示:

public void setActionModeTitle(CharSequence title) {
    String str = String.valueOf(title);
    str = str.toUpperCase(Locale.getDefault());
    SpannableString s = new SpannableString(str);
    MetricAffectingSpan span = new MetricAffectingSpan() {
        @Override
        public void updateMeasureState(TextPaint p) {
            p.setTypeface(FontManager.INSTANCE.getAppFont());
        }

        @Override
        public void updateDrawState(TextPaint tp) {
            tp.setTypeface(FontManager.INSTANCE.getAppFont());
        }
    };

    s.setSpan(span, 0, s.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);

    actionMode.setTitle(s);
}
于 2013-07-11T22:47:29.067 回答
0
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="horizontal"
    android:padding="@dimen/padding_very_small"
    android:weightSum="2" >

    <TextView
        android:id="@+id/uRecomendTitleText"
        style="@style/TitleStyle"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:layout_weight="0.5"
        android:drawableLeft="@drawable/left_arrow"
        android:text="@string/recommendation"
        android:visibility="visible" />

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1.5"
        android:orientation="horizontal" >

        <TextView
            style="@style/TitleStyle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical|right"
            android:gravity="center"
            android:paddingRight="@dimen/padding_very_small"
            android:text="@string/rank" />

        <TextView
            android:id="@+id/uRecomendCount"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical|right"
            android:background="@drawable/rounded_box"
            android:gravity="center" />
    </LinearLayout>

</LinearLayout>
于 2013-07-17T11:22:02.537 回答
0
  TextView txt=(TextView)findViewById(R.id.uRecomendTitleText);
     Typeface AshtonsHand;
        AshtonsHand = Typeface.createFromAsset(this.getAssets(),
                IConstants.font);
    txt.setTypeface(AshtonsHand);
    getSupportActionBar().setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);

    getSupportActionBar().setBackgroundDrawable(
            getResources().getDrawable(R.drawable.top_bg_back));

    // getSupportActionBar().setDisplayUseLogoEnabled(false);
    // getSupportActionBar().setDisplayShowTitleEnabled(true);
    // getSupportActionBar().setDisplayShowHomeEnabled(false);
    // getSupportActionBar().setDisplayHomeAsUpEnabled(true);
    getSupportActionBar().setCustomView(R.layout.friends_list_actionbar);
于 2013-07-17T11:27:51.453 回答