gpt4 book ai didi

java - Activity 机器人 :label change application name

转载 作者:行者123 更新时间:2023-11-29 04:16:59 27 4
gpt4 key购买 nike

我开始了一个没有 Activity 的新项目,然后我创建了自己的项目并将它们注册为如下所示。但是每当我在我的 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>

最佳答案

application标签中添加android:label="app name"

application 标签中使用 android:label 将设置应用程序名称。在 Activity 标签中使用 android:label 将设置 Activity 的标题。

关于java - Activity 机器人 :label change application name,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51724814/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com