我有一个应用程序,其要求是在应用程序标题栏的右角显示应用程序版本名称。
这可能吗?
请注意,版本名称的颜色和大小也不同。
抱歉,由于声誉不够,抱歉无法发布图片.... :(类似
--------------------------------------------------
Application title comes here... v1.23
--------------------------------------------------
答案 0 :(得分:0)
这似乎是不可能的。
唯一的解决方法似乎是使用了帖子android place a textview over application title
中提到的自定义标题栏以下代码可获得快速帮助:
@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");
}
}
希望它对某人有帮助!