我开始了一个没有任何活动的新项目,然后创建了自己的项目并进行了注册,如下所示。但是,只要我在LoginActivity上放置标签,它就会更改,它会更改应用程序名称。
<application
android:name=".app.ApplicationController"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".activities.LoginActivity"
android:label="@string/login_screen_label"
android:launchMode="singleTop"
android:windowSoftInputMode="adjustPan">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".activities.RegisterActivity"
android:launchMode="singleTop"
android:windowSoftInputMode="adjustPan" />
<activity
android:name=".activities.MainActivity"
android:launchMode="singleTop"/>
</application>
还有我的字符串资源
<string name="app_name">My ToDo</string>
<string name="login_screen_label">Log in</string>
我在做什么错了
更新actitity_login.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="0dp" >
</RelativeLayout>
答案 0 :(得分:1)
在android:label="app name"
标签中添加application
在android:label
标记中使用application
将设置应用程序名称。并在android:label
标签中使用Activity
将设置Activity
的标题。
答案 1 :(得分:0)
从mainfests中删除此行
android:label="@string/login_screen_label"
答案 2 :(得分:0)
Toolbar toolBar = (Toolbar) findViewById(R.id.toolbar_actionbar);
toolbar.setTitle(your label);
如果您将AppTheme与Darkbarbar之类的Actionbar一起使用,则需要如上所述设置工具栏并在工具栏中设置标题
答案 3 :(得分:0)
您可以在onCreate()
getSupportActionBar().setTitle("My title");
完整代码:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_splash_screen);
getSupportActionBar().setTitle("My title");
}
}