23

我在我的应用程序中为每个活动使用自定义标题视图。在其中一项活动中,基于按钮单击,我需要更改自定义标题视图。现在,每当我调用 setFeatureInt 时,它都可以正常工作。

但是,如果我尝试更新自定义标题中的任何项目(例如更改按钮的文本或标题上的文本视图),则不会进行更新。

通过代码调试显示文本视图和按钮实例不为空,我还可以看到自定义标题栏。但是文本视图或按钮上的文本没有更新。有没有其他人遇到过这个问题?我该如何解决?

谢谢。

编辑

这是我尝试过的。即使在调用 postInvalidate 时也不会更新。

    getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.text_title);

    TextView databar = (TextView) findViewById(R.id.title_text);
    databar.setText("Some Text");
    databar.postInvalidate();

    Button leftButton = (Button) findViewById(R.id.left_btn);
    leftButton.setOnClickListener(mLeftListener);
    leftButton.setText("Left Btn");
    leftButton.postInvalidate();

    Button rightBtn = (Button) findViewById(R.id.right_btn);
    rightBtn.setOnClickListener(mRightListener);
    rightBtn.postInvalidate();
4

4 回答 4

32

问题是唯一的Window实现 ( PhoneWindow)LayoutInflater在其方法中使用 a 并使用andsetFeatureInt实例化新布局。因此,当您调用 时,新布局不会被替换,而是附加到内部标题容器,因此会在彼此之上绘制。inflateattachToRoot=truesetFeatureInt

您可以通过使用以下辅助方法而不是setFeatureInt. 在设置新的自定义标题功能之前,助手会简单地从内部标题容器中删除所有视图:


private void setCustomTitleFeatureInt(int value) {
    try {
        // retrieve value for com.android.internal.R.id.title_container(=0x1020149)
        int titleContainerId = (Integer) Class.forName(
            "com.android.internal.R$id").getField("title_container").get(null);

        // remove all views from titleContainer
        ((ViewGroup) getWindow().findViewById(titleContainerId)).removeAllViews();

        // add new custom title view 
        getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, value);

    } catch(Exception ex) {
        // whatever you want to do here..
    }
}

我不确定当前的setFeatureInt行为是否是有意的,但它肯定没有以一种或另一种方式记录,这就是为什么我会把它带到 android 开发者那里;)

编辑

正如评论中所指出的,上述解决方法并不理想。您可以在设置新标题时简单地隐藏旧的自定义标题,而不是依赖com.android.internal.R.id.title_container常量。

假设您有两个自定义标题布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout android:id="@+id/custom_title_1" ...

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout android:id="@+id/custom_title_2" ...

并且您想替换custom_title_1custom_title_2,您可以隐藏前者并使用setFeatureInt添加后者:

findViewById(R.id.custom_title_1).setVisibility(View.GONE);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.custom_title_2);
于 2009-05-14T22:27:43.090 回答
14

正确的方法如下:

requestWindowFeature( Window.FEATURE_CUSTOM_TITLE );
setContentView( R.layout.my_layout );
getWindow().setFeatureInt( Window.FEATURE_CUSTOM_TITLE, R.layout.my_custom_title );
super.onCreate( savedInstanceState );

请注意,这些语句的顺序非常重要。

如果您在任何其他语句之前调用 super.onCreate(),您将得到一个空白标题栏,查找标题栏 ID 并从中删除所有视图的黑客将修复但不推荐。

于 2011-06-24T19:06:49.593 回答
0

您是否在更新文本后调用 invalidate 或 postInvalidate 来重绘视图?如果它是一个自定义视图,你可以在绘制代码中放置一个断点以确保它被调用吗?

如果您在 UI 线程上,则可以调用“invalidate”,如果不是,则必须调用“postInvalidate”,否则视图不会重绘自身。

于 2009-05-05T16:41:11.060 回答
0

只是我的 2c 价值:

在 MapActivity 中工作时,请求自定义标题会导致根本不显示任何标题。

幸运的是,我想做的只是以不同的方式设置标题文本,我很快意识到在 onCreate() 中调用 setTitle() 对我有用(我在调用 setContentView() 后调用了它)

抱歉,但我现在没有时间再调试它并弄清楚为什么我所做的事情不起作用,以及为什么改变它使它起作用。正如我所说,只是认为这可能会帮助别人。

于 2010-01-09T01:36:29.210 回答