5

下面我EditText在主题中添加了样式。我也添加了宽度和高度。所以我从我的android:layout_width观点中删除了。但它说的是错误。如果我添加宽度和高度,它工作正常。有什么区别。主题是否不适用于我的 edittext 视图?android:layout_heightedittext

<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" />
4

2 回答 2

6

styles.xml必须包含

<resources xmlns:android="http://schemas.android.com/apk/res/android">在顶部。

如果此文件是自动生成的,或者您自己制作了此文件,则有时会忘记此属性。

于 2013-07-18T17:24:59.570 回答
2

您需要将样式应用于EditText

 <EditText android:hint="Username"
  style="@style/custom_EditTextStyle" />

编辑:根据您的评论,我认为这就是您想要的:

<EditText android:hint="Username"
    android:layout_height="48dp"
     android:layout_width="match_parent"/>
于 2013-05-30T15:56:38.747 回答