답변:
다음과 같이 setTitle 자체를 시도하십시오.
setTitle("Hello StackOverflow");
참고로 XML에서 선택적으로 수행 할 수 있습니다.
AndroidManifest.xml에서 다음을 사용하여 설정할 수 있습니다.
android:label="My Activity Title"
또는
android:label="@string/my_activity_label"
예:
<activity
android:name=".Splash"
android:label="@string/splash_activity_title" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
한 번 원하고 시스템이 나머지를 동적으로 처리하도록하려면 매니페스트 파일에서 다음과 같이하십시오.
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name_full" > //This is my custom title name on activity. <- The question is about this one.
<intent-filter android:label="@string/app_launcher_name" > //This is my custom Icon title name (launcher name that you see in android apps/homescreen)
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
setTitle(getResources().getText(R.string.MyTitle));
더 빠른 방법이 있습니다.
YourActivity.setTitle("New Title");
다음 과 같이 onCreate () 안에서 찾을 수도 있습니다 .
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
this.setTitle("My Title");
}
그건 그렇고, 단순히 할 수없는 일은 Activity 객체를 전달하지 않고 정적 방식으로 setTitle ()을 호출하는 것입니다.
여러 활동이있는 경우 AndroidManifest.xml에서 이와 같이 설정할 수 있습니다
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".NumbersActivity"
android:label="@string/category_numbers"
android:theme="@style/category_numbers" />
<activity
android:name=".FamilyActivity"
android:label="@string/category_family"
android:theme="@style/category_family" />
<activity
android:name=".ColorsActivity"
android:label="@string/category_colors"
android:theme="@style/category_colors" />
<activity
android:name=".PhrasesActivity"
android:label="@string/category_phrases"
android:theme="@style/category_phrases" />
<activity
android:name=".ExperimentActivity"
android:label="@string/category_experiment"
android:theme="@style/category_experiment" />
</application>
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.Main_Activity);
this.setTitle("Title name");
}
Java 파일에서 제목을 설정하려면 활동에 onCreate를 작성하십시오.
setTitle("Your Title");
매니페스트에 가고 싶다면
<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>
단추를 클릭하여 활동을 변경할 때 활동 제목을 변경하려는 경우. 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);