是否可以在应用程序标题栏上放置文本框?就像在xcode中一样,可以在任何地方放置文本框,我猜是使用绝对定位...
目的是在应用程序标题栏的右上角放置一个小版本指示器。
由于
答案 0 :(得分:0)
请尝试使用以下内容。
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
final boolean customTitleSupported = requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
setContentView(R.layout.main);
if ( customTitleSupported ) {
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.mytitle);
}
final TextView myTitleText = (TextView) findViewById(R.id.myTitle);
if ( myTitleText != null ) {
myTitleText.setText("MY TITLE");
}
}