2016-04-07 10 views
0

私は自分のアプリでナビゲーションドロワーアクティビティを使用しています。 私は太字でアプリ名を削除したいと思います。私はたくさんのコードを試しています。私はそれを試してみてくださいandroidmainfestナビゲーションドロワーのアクティビティ(メイン)と他のすべてのアクティビティのアプリラベルを削除します

<application 
    android:allowBackup="true" 
    android:icon="@mipmap/ic_launcher" 
    android:label="@string/app_name" 
    android:theme="@style/AppTheme.NoActionBar"> 

に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> 

Theme.AppCompat.NoActionBar 
+0

は、ツールバーを使用しましたコードの下に追加しますか? –

+0

あなたはカスタムツールバーですか? –

+0

には 'getActionBar()。setTitle(" ")'のようなものはありませんか? – MKJParekh

答えて

0

使用したくありません!

3

次の行を試してみてください。

getActionBar().setDisplayShowTitleEnabled(false); 

かのstyles.xmlで

<activity 
     android:name=".MainActivity" 
     android:label="" 
     android:theme="@style/AppTheme.NoActionBar" 
     android:configChanges="screenSize|orientation"> 
    </activity> 

のAndroidManifest.xml

getSupportActionBar().setDisplayShowTitleEnabled(false); 
+0

ありがとうございました。 getSupportActionBar()。setDisplayShowTitleEnabled(false); – Ivan

0

<style name="AppTheme.NoActionBar"> 
    <item name="windowActionBar">false</item> 
    <item name="windowNoTitle">true</item> 
</style> 
+0

ありがとうございました... –