我在用
Window w = getWindow();
w.setTitle("My title");
要更改我当前活动的标题,但似乎不工作。
有人能告诉我怎么改变吗?
我在用
Window w = getWindow();
w.setTitle("My title");
要更改我当前活动的标题,但似乎不工作。
有人能告诉我怎么改变吗?
当前回答
代码帮助我更改了标题。
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_name);
ActivityName.this.setTitle("Your Activity Title");}
其他回答
如果你想在Java文件中设置标题,那么写在你的活动onCreate
setTitle("Your Title");
如果你想在Manifest里写
<activity
android:name=".MainActivity"
android:label="Your Title" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
我有一个工具栏在我的活动和基础活动,覆盖所有的标题。所以我必须在onResume()在活动中使用setTitle,就像这样:
@Override
protected void onResume() {
super.onResume();
toolbar.setTitle(R.string.title);
}
如果你想改变活动标题时,你改变活动点击按钮。在MainActivity中声明必要的变量:
private static final String TITLE_SIGN = "title_sign";
ImageButton mAriesButton;
在onCreate()中添加onClickListener,并为另一个活动创建新意图:
mTitleButton = (ImageButton) findViewById(R.id.title_button);
mTitleButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Intent intent = new Intent(MainActivity.this,
SignActivity.class);
String title_act = getText(R.string.simple_text).toString();
intent.putExtra("title_act", title_act);
startActivity(intent);
finish();
}
});
onCreate()中的SecondActivity代码:
String txtTitle = getIntent().getStringExtra("title_act");
this.setTitle(txtTitle);
在Kotlin中,这样做:
this.title = resources.getText(R.string.fast_learning)
setTitle(getResources().getText(R.string.MyTitle));