我在活动中创建了一个空白的应用栏,插入了一个文本,一切正常,我修改了一点代码,现在应用程序栏中显示的应用程序名称,如何删除它以及它来自哪里? here is the design and the output
这里是代码
<android.support.v7.widget.Toolbar
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:theme="?attr/actionBarTheme"
android:minHeight="?attr/actionBarSize"
android:id="@+id/toolbar"
android:layout_alignParentTop="true"
android:layout_alignParentStart="true"
/>
答案 0 :(得分:0)
从操作栏中删除标题尝试此
Toolbar toolbar=(Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
getSupportActionBar().setTitle("");
尝试此操作以更改操作栏标题
Toolbar toolbar=(Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
getSupportActionBar().setTitle("your title");// set your title name
答案 1 :(得分:0)
在清单
中为您的活动添加标签<activity
android:name=".ui.SplashActivity"
android:label="@string/name_you_want"
android:clearTaskOnLaunch="true"
android:excludeFromRecents="true"
android:screenOrientation="sensor"
android:theme="@style/Apollo.Landing">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>