我在活动类中看到“未找到edit_password ID”以及同一.axml文件中的其他ID的编译错误。有人知道为什么吗?
<android.support.design.widget.TextInputLayout
android:layout_marginTop="5dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/basic_button_background"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
>
<android.support.design.widget.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:singleLine="true"
app:passwordToggleEnabled="true"
android:id="@+id/edit_password"
android:textSize="@dimen/margin_padding_size_medium"
android:privateImeOptions="@string/abc_action_mode_done"
/>
</android.support.design.widget.TextInputLayout>
保存您的.axml
文件,清理并重建您的项目。然后,它将重新生成Resources.designer.cs
文件,该文件应包含Id
定义。