我添加了一個自定義的標題欄到android應用程序,這個標題欄(這是一個普通的png)出現在主要活動內部。問題是,主要活動使用label
標籤這樣也定義了應用程序的名稱:Android - 如何分離應用程序的名稱與標題欄?
<activity android:name=".MainActivity"
android:theme="@style/customTheme"
android:screenOrientation="portrait"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
而且這個標籤也被報道在標題欄!如何分離這兩個? (基本上,仍然可以給應用程序一個名稱,而不會影響我的自定義標題欄)。
謝謝!
你的答案被已經發布[這裏] [1] [1]:http://stackoverflow.com/questions/3488664/android-launcher-label-vs-activity-標題 – jmhostalet