下面我EditText
在主题中添加了样式。我也添加了宽度和高度。所以我从我的android:layout_width
观点中删除了。但它说的是错误。如果我添加宽度和高度,它工作正常。有什么区别。主题是否不适用于我的 edittext 视图?android:layout_height
edittext
<style name="AppTheme" parent="AppBaseTheme">
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
<item name="android:editTextStyle">@style/custom_EditTextStyle</item>
</style>
<style name="custom_EditTextStyle" parent="@android:style/Widget.EditText">
<item name="android:background">@drawable/edittextbox</item>
<item name="android:singleLine">true</item>
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">48dp</item>
</style>
我的编辑文本视图
<EditText android:hint="Username" />