私は自分のアプリでナビゲーションドロワーアクティビティを使用しています。 私は太字でアプリ名を削除したいと思います。私はたくさんのコードを試しています。私はそれを試してみてください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
は、ツールバーを使用しましたコードの下に追加しますか? –
あなたはカスタムツールバーですか? –
には 'getActionBar()。setTitle(" ")'のようなものはありませんか? – MKJParekh