如何更改启动器 activity 名称和图标并保留应用名称和图标?

How to change the launcher activity name and icon and keep the app name and icon?

我希望在不同的活动中有不同的标题栏图标和名称,但不更改应用名称或图标。第一个activity不应该有标题名称。

这是我在 AndroidManifest.xml:

<application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:screenOrientation="portrait"
            android:name="" <!-- there should be no title here -->
            android:icon="@drawable/custom_icon"
            android:windowSoftInputMode="stateHidden|adjustResize" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:screenOrientation="portrait"
            android:name=".MainActivity"
            android:icon="@drawable/another_custom_icon"
            android:label="MainTitle" >
        </activity>
</application>

显然 Android 使用第一个 activity 的名称和图标作为应用名称和图标。 我知道我可以将这行代码放在 activity:

onCreate
    getActionBar().setTitle("");

但它也会在加载期间显示,直到它被删除。

这是 styles.xml 文件:

<style name="AppTheme" parent="@android:style/Theme.Holo.Light">
    <item name="android:actionBarStyle">@style/actionBarCustomization</item>
</style>

<style name="actionBarCustomization" parent="@android:style/Widget.Holo.Light.ActionBar">
    <item name="android:background">#FFFFFF</item>
    <item name="android:titleTextStyle">@style/actionBarTextColor</item>
</style>

<style name="actionBarTextColor" parent="@android:style/TextAppearance">
    <item name="android:textColor">#000000</item>
</style>

AndroidManifest.xml

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:screenOrientation="portrait"
       <!-- This the name on Activity so put there the name of your MainActivity i.e com.example.MainActivity -->
        android:name="NAME OF YOU LAUNCHER ACTIVITY"       
        android:icon="@drawable/custom_icon"
        android:theme="@style/Theme.NoActionBarTitle"
        android:windowSoftInputMode="stateHidden|adjustResize" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:screenOrientation="portrait"
        android:name=".MainActivity"
        android:icon="@drawable/another_custom_icon"
        android:label="MainTitle" >
    </activity>

Style.xml

<style name="AppTheme" parent="@android:style/Theme.Holo.Light">
    </style>
<style name="Theme.NoActionBarTitle" parent="@android:style/Theme.Holo.Light">
  <item name="android:actionBarStyle">@style/NoActionBarTitle.ActionBar</item>
</style>

 <style name="NoActionBarTitle.ActionBar"    parent="@android:style/Widget.Holo.Light.ActionBar">
  <<item name="android:displayOptions">showHome|useLogo</item>
 </style>

之后如果你想显示 activity 的标题,你可以使用方法。

 getActionBar().setDisplayShowTitleEnabled(true);

对于那些使用 appcompat 支持的人来说 library.I 意味着活动正在从 AppCompatActivity 扩展,使用下面的样式文件

Style.xml 如果您使用的是 appcompat

<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <!-- Customize your theme here. -->
</style>

<style name="Theme.NoActionBarTitle" parent="Theme.AppCompat.Light.DarkActionBar">
    <item name="actionBarStyle">@style/NoActionBarTitle.ActionBar</item>
    <item name="android:actionBarStyle">@style/NoActionBarTitle.ActionBar</item>
</style>

<style name="NoActionBarTitle.ActionBar" parent="Widget.AppCompat.Light.ActionBar.Solid.Inverse">
    <item name="android:displayOptions">showHome|useLogo</item>
    <item name="displayOptions">showHome|useLogo</item>
</style>