3

我在手机上运行 Android 2.3 并注意到很多应用程序使用 ICS 编辑文本字段,例如 square up 和 tumblr。有谁知道他们是如何实现这一目标的?

4

3 回答 3

17

您可以将自定义样式应用于您的编辑文本。

方法如下:
- 在您的 drawables 文件夹中创建一个 xml 文件 (edit_text_holo_dark.xml)
- 将此 xml 代码放入创建的文件中:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

<item android:state_window_focused="false" android:state_enabled="true" android:drawable="@drawable/textfield_default_holo_dark" />
<item android:state_window_focused="false" android:state_enabled="false" android:drawable="@drawable/textfield_disabled_holo_dark" />
<item android:state_enabled="true" android:state_focused="true" android:drawable="@drawable/textfield_activated_holo_dark" />
<item android:state_enabled="true" android:state_activated="true" android:drawable="@drawable/textfield_focused_holo_dark" />
<item android:state_enabled="true" android:drawable="@drawable/textfield_default_holo_dark" />
<item android:state_focused="true" android:drawable="@drawable/textfield_disabled_focused_holo_dark" />
<item android:drawable="@drawable/textfield_disabled_holo_dark" />
</selector>


  • 将上述 xml 中提到的可绘制对象从平台文件夹(平台 android-15)复制到项目的可绘制文件夹。

  • 在您的 values 文件夹中创建一个 styles.xml 文件并放置以下代码:

    <style name="EditTextHoloDark" parent="android:style/Widget.EditText">
        <item name="android:background">@drawable/edit_text_holo_dark</item>
        <item name="android:textColor">#ffffff</item>
    </style>
    


  • 最后在您的布局文件中,将 style 属性添加到 edittext:

    style="@style/EditTextHoloDark"

于 2012-08-19T07:53:39.607 回答
3

请阅读此内容可能对您有所帮助 //Dead

上面的链接现在无效,你可以看看这个

于 2012-08-19T06:34:18.303 回答
2

他们很可能已将新平台上的资源复制到他们的应用程序中。因此,您需要将与编辑文本相关的文件复制到您的应用程序中,并将这些文件应用到您的编辑框。做起来应该没那么难。

于 2012-08-19T06:29:29.947 回答