我正在创建一个具有两个单独日志的应用,您必须根据您按下的按钮输入信息。这两个登录信息具有不同的ID。对于其中一个日志,它说:7th_email然后是7th_Password,但是对于其他登录,它说:8th_email然后是8th_Password。 我没有看到错误重复资源错误的来源。
这是代码;
<merge xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
tools:context="com.novaschool.novaschoolapp.Seventh_Grade_Login">
<!-- Login progress -->
<LinearLayout android:id="@+id/login_status"
android:visibility="gone"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center_horizontal"
android:orientation="vertical">
<ProgressBar style="?android:attr/progressBarStyleLarge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"/>
<TextView
android:id="@+id/login_status_message"
android:textAppearance="?android:attr/textAppearanceMedium"
android:fontFamily="sans-serif-light"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="16dp"
android:text="@string/login_progress_signing_in" />
</LinearLayout>
<!-- Login form -->
<ScrollView
android:id="@+id/login_form"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout style="@style/LoginFormContainer"
android:orientation="vertical">
<EditText
android:id="@+id/7th_email"
android:singleLine="true"
android:maxLines="1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textEmailAddress"
android:hint="@string/prompt_email"
android:text="Enter Your Email" />
<EditText
android:id="@+id/7th_password"
android:singleLine="true"
android:maxLines="1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/prompt_password"
android:inputType="textPassword"
android:imeActionLabel="@string/action_sign_in_short"
android:imeActionId="@+id/login"
android:imeOptions="actionUnspecified"
android:text="Enter your Password" />
<Button android:id="@+id/7th_sign_in_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:text="Enter"
android:paddingLeft="32dp"
android:paddingRight="32dp"
android:layout_gravity="right" />
</LinearLayout>
</ScrollView>
答案 0 :(得分:0)
请检查您是否在同一目录中创建了与现有资源具有相同ID的别名。如果没有,请重新启动IDE或清理并重建项目。您将项目复制并粘贴到其他位置并加载它到您的IDE。
答案 1 :(得分:0)
当我在版本控制分支之间切换时,有时会发生这种情况。
构建 - &gt;清洁项目
菜单选项通常会在我的情况下解决这个问题。