android setText不适用于自定义标题栏布局

时间:2012-08-07 21:22:19

标签: android android-layout textview android-titlebar

我为我的浮动活动制作了自定义标题栏。 现在我想以编程方式在我的自定义标题中更改TextView的文本,但无法这样做。 我可以通过xml更改文本,但我希望它能在代码中完成。

这里是label.java(浮动活动)的代码,它没有更新标题栏中的textView

    protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);


       requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);

       setContentView(R.layout.my_title);
        TextView label = (TextView)findViewById(R.id.myTitle);
        label.setText("Label here code");//not working
        getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.my_title);

        setContentView(R.layout.label);// as i need this layout for rest of activity

    //rest of code

myTitle.xml

<?xml version="1.0" encoding="utf-8"?>
<TextView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/myTitle"
android:text="Label here"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:textColor="@android:color/white"
 /> 

1 个答案:

答案 0 :(得分:2)

你做错了。你必须这样做:

public class CustomTitleActivity extends Activity {
    private TextView title;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);

        setContentView(R.layout.label);

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

        title = (TextView) findViewById(R.id.title);
        title.setText("My custom title");
    }
}

您尝试使用setContentView(R.layout.my_title)将自定义标题布局扩展到活动的内容区域,这当然可以让您抓住TextView因为您将其充气到容器中,但之后您告诉它将你的自定义标题膨胀到窗口,这会膨胀一个完全不同的TextView,它实际上是你想要的。然后,您使用setContentView(R.layout.label)覆盖了活动的内容。