gpt4 book ai didi

android - 提交失败后EditText失去边框

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:07:39 25 4
gpt4 key购买 nike

我构建了一个如下所示的屏幕:

但是如果登录失败,屏幕会变成这样:

我使用了 EditText,代码如下所示:

<TextView android:layout_height="wrap_content"  
android:layout_width="wrap_content"
android:text="email"></TextView>
<EditText
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:id="@+id/username"
android:hint=""
android:textStyle="normal"
android:singleLine="true"
android:inputType="textEmailAddress">
</EditText>
<TextView android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="password">
</TextView>
<EditText
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:id="@+id/uc_txt_password"
android:hint=""
android:textStyle="normal"
android:singleLine="true"
android:inputType="textPassword">
</EditText>

有什么想法吗?

更新:伪造的显示似乎是默认情况下在 Ice-cream-sandwich 上显示的方式。我使用的是旧版本的 android (2.2),它的显示看起来像第一张附加图片。

最佳答案

ICS 引入了更“开放”的文本布局(查看 gmail 应用程序),其中编辑文本的默认样式没有边框。如果您不希望它看起来像设备设置它的方式,您应该更严格地将您的样式定义为您希望它在所有设备上的样式。也许使用大约 9 个补丁图像和状态选择器 xml 文件。因此,如果您将背景设置为白色之类的东西并且没有定义任何其他样式,它可能会继承自 Holo.Dark 并将其用作编辑文本 bg:https://github.com/android/platform_frameworks_base/blob/master/core/res/res/drawable-hdpi/textfield_default_holo_dark.9.png

因此,没有可见的文本。更严格地定义您的风格,或者更好地设置您的主题并且不要覆盖其他背景。

关于android - 提交失败后EditText失去边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8209335/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com