我的activity_main.xml中出现错误的代码块如下:
<EditText
style="@style/editText_style"
android:inputType="textEmailAddress"
android:id="@+id/editText1" />
<EditText
style="@style/editText_style"
android:inputType="textPassword"
android:id="@+id/editText2" />
我样式中的代码如下:
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.DayNight.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
<style name="editText_style">
<item name="android:gravity">center</item>
<item name="android:background">@drawable/editText_background</item>
<item name="android:layout_width">match_parent</item>
<item name="android:layout_height">match_parent</item>
<item name="android:ems">10</item>
<item name="android:layout_margin">10dp</item>
</style>
</resources>
我收到错误说明: 未声明'style'属性。 我不明白怎么了。任何帮助表示赞赏。谢谢。