我试图在我的表单的 EditText 中显示一个提示,但是我看不到我在部署应用程序时在 XML 布局中设置的提示,但是我可以在 eclipse 设计器 View 中看到提示,但是同时部署了假设缺少的相同提示,我尝试了所有可能的方法,但仍然无法在 EditText 中获得提示......这是我使用过的编辑文本布局之一..

<EditText android:id="@+id/SetTimerSec_EditText01"
    android:layout_width="60sp"
    android:layout_height="40sp"
    android:singleLine="true"
    android:layout_x="220sp"
    android:layout_y="170sp"
    android:hint="0"
    android:inputType="phone"
    android:textColorHint="@color/black"
    android:gravity="center"
    android:focusableInTouchMode="true" />

[链接文字][1]

任何人都可以帮助我..请

提前致谢

[1]: http://imgur.com/PzomF.jpg
[显示提示的设计器 View 屏幕截图][1]

最佳答案

这似乎是一个 SDK 错误,或者至少与一个相关。
http://code.google.com/p/android/issues/detail?id=7252

如果您删除以下内容,则会显示提示:
机器人:重力=“中心”

关于android - Android 中的提示,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3642234/

10-12 03:59
查看更多