0

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

这是 label.java(floating activity) 的代码,它没有更新标题栏中的 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

我的标题.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"
 /> 
4

1 回答 1

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");
    }
}

您试图将自定义标题布局膨胀到 Activity 的内容区域中setContentView(R.layout.my_title),这当然可以让您抓住 ,TextView因为您将其膨胀到容器中,但随后您告诉它将您的自定义标题膨胀到 Window 中,这膨胀了完全不同的 TextView 这实际上是你想要的。然后你用 覆盖了 Activity 的内容setContentView(R.layout.label)

于 2012-08-07T21:50:14.210 回答