我使用不同的布局在我的应用程序中显示不同的样式标题。问题是我无法获得对所有这些文件中存在的特定Textview的引用。如果我改变文本,没有任何反应。
这是我正在做的事情:
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.title_bar);
以下方法不起作用:
public void setTitle(String text) {
TextView txtTitle = (TextView) this.findViewById(R.id.txtTitle);
if(txtTitle !=null) {
txtTitleMoney.setText(text);
Log.d("debug", "not null");
}
}
我没有收到任何错误,所以我认为我正在访问错误的视图。
希望有人可以帮助我:)。
答案 0 :(得分:5)
试试这个
boolean customTitleSupported;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
customTitleSupported = requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
setContentView(R.layout.mainscreen);
customTitleBar();
}
public void customTitleBar( ) {
if (customTitleSupported) {
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE,
R.layout.customtitlebar);
TextView title = (TextView) findViewById R.id.title);
title.setText(left);
}
}
答案 1 :(得分:5)
如果您为所有不同标题布局中的txtTitle
项设置了相同的ID(" TextView
"),那么您的代码应该有效。
同时确保在setTitle()
之后致电setContentView()
。