0

我需要在 ActionBar 中有一个自定义菜单项,它只显示一些自定义格式的文本。所以我想我会即时创建一个图像并将其附加到菜单图标上。所以在我的代码中,我认为我可以使用 Layout xml 来撰写我的文本:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="horizontal"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content">
    <TextView android:textColor="#bcbcbb"
              android:layout_height="wrap_content"
              android:layout_width="wrap_content"
              android:text="Some Text"/>
    <TextView android:textColor="#ffffff"
              android:layout_height="wrap_content"
              android:layout_width="wrap_content"
              android:id="@+id/replace_text" android:text="XXXX"/>
</LinearLayout>

然后为 DrawableBitmap 创建一个临时布局图:

        LinearLayout layout = (LinearLayout)View.inflate(getApplicationContext(), R.layout.refund_text, null );
        layout.setDrawingCacheEnabled(true);
        layout.measure(View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED), View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED));
        layout.layout(0, 0, mRefundLayout.getWidth(), layout.getHeight());
        layout.buildDrawingCache(true);
        Bitmap bitmap = Bitmap.createBitmap(layout.getDrawingCache());
        BitmapDrawable bm = new BitmapDrawable( getBaseContext().getResources(), bitmap);
        layout.setDrawingCacheEnabled(false);
....do something with the bitmap

然而,在测量调用宽度和高度之后仍然为零。谁能告诉我我做错了什么?

问候李

4

1 回答 1

0

如果您只想控制 MenuItem 中文本的颜色,则可以简单地通过格式化(使用 SpannableStringBuilder)传递给 MenuItem.add(int groupId, int itemId, int order, CharSequence title) 的 CharSequence . 我没有试过,如果它有效,请告诉我们!

如果您最终想要做更多的事情,那么创建您自己的自定义 ActionProvider,在 onCreateActionView() 中扩展您的布局并在 onPerformDefaultAction() 中“做事”。

于 2013-06-07T07:52:53.833 回答