它始终在所有活动上方显示AndroidAdminApi Label。我可以在清单代码中更改应用程序名称,但是有没有办法将Label用于个人活动?
Android清单代码
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".Activities.UserManagement.Auth.Login.LoginActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
答案 0 :(得分:2)
你可以这样改变
<div id="test">A little [prefix] test</div>
或者
getSupportActionBar().setTitle("Your custom title");
答案 1 :(得分:1)
您可以在manifest.xml中添加如下内容
<activity
android:name=".xyz"
android:label="XYZ" />
<activity
android:name=".abc"
android:label="ABC" />
答案 2 :(得分:0)
是的,您使用actionBar.setTitle
或仅在活动中setTitle
更改了单个活动的标签
1。使用操作栏标题
getActionBar().setTitle(title);
OR
getSupportActionBar().setTitle(title); //if you are using appcompat library, also you can try setTitle in your activity directly
2. 直接为清单
中的活动指定标签<activity
android:name="package.yourActivity"
android:label="Label" />
3. :直接尝试在活动中使用setTitle