我在我的应用中使用导航抽屉活动,并在标题栏上添加了漂亮的徽标。 我想在tittle上删除应用名称。我尝试了很多代码。我不想使用
Theme.AppCompat.NoActionBar
答案 0 :(得分:3)
尝试以下行可能有效。
getActionBar().setDisplayShowTitleEnabled(false);
或
getSupportActionBar().setDisplayShowTitleEnabled(false);
答案 1 :(得分:0)
在style.xml中
<style name="AppTheme.NoActionBar" parent="Theme.AppCompat.Light.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
<item name="android:windowEnableSplitTouch">false</item>
<item name="android:splitMotionEvents">false</item>
</style>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
试试吧!
答案 2 :(得分:0)
在AndroidManifest.xml中
<activity
android:name=".MainActivity"
android:label=""
android:theme="@style/AppTheme.NoActionBar"
android:configChanges="screenSize|orientation">
</activity>
在styles.xml中添加以下代码
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>