我希望在不同的活动中使用不同的标题栏图标和名称,但不要更改应用程序名称或图标。第一个活动不应该有标题名称。
这就是我在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
使用应用名称和图标的第一个活动的名称和图标。
我知道我可以将这行代码放在活动的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>
答案 0 :(得分:3)
<强>的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>
之后,如果您想使用方法,则可以显示活动标题。
getActionBar().setDisplayShowTitleEnabled(true);
对于那些使用appcompat支持库的人。我的意思是有活动从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>