Android에서 활동 제목을 변경하는 방법은 무엇입니까? 제목을 변경했지만

나는 사용하고있다

Window w = getWindow();
w.setTitle("My title");

현재 활동의 제목을 변경했지만 작동하지 않는 것 같습니다.

누구든지 이것을 변경하는 방법을 안내 할 수 있습니까?



답변

다음과 같이 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));


답변

이것은 나를 위해 일했습니다.

public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
    View v = inflater.inflate(R.layout.fragment, container, false);
    getActivity().setTitle("My Title");
//...
}


답변

더 빠른 방법이 있습니다.

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>