自定义编辑文本指针位置

时间:2015-03-11 20:09:55

标签: java android xml eclipse android-edittext

好的,所以我对Android有点新鲜。所以我非常关注一些在线教程,让自己参与一些开发。

我是计算机科学本科生,所以我对Java的了解非常广泛。我只是遇到了一些XML问题,因为我之前没有使用它。

我正在尝试使用一些简单的登录表单创建一个LoginActivity。

我需要将指针略微向右移动,这样它就在盒子内部。

这是我的.xml文件。

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.unibites.LoginActivity" >

<ImageButton
    android:id="@+id/signinBtn"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_centerHorizontal="true"
    android:layout_marginBottom="159dp"
    android:background="#00000000"
    android:contentDescription="@string/desc"
    android:src="@drawable/signin_btn" />

<EditText
    android:id="@+id/userEt"
    android:inputType="text"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_above="@+id/signinBtn"
    android:layout_alignRight="@+id/signinBtn"
    android:layout_marginBottom="86dp"
    android:background="@drawable/text_field"
    android:ems="10" />

Link to the Simulator Image, where the pointer is currently at.

1 个答案:

答案 0 :(得分:0)

我不知道你在这里添加了什么

android:background="@drawable/text_field"

没有这段xml属性/属性,活动运行得非常好! :)

更多的代码或细节会更有帮助...

编辑无法拍摄光标的屏幕截图(血腥闪烁!:P)

相关答案

首先,指针闪烁,应该是......需要整理的图像

您的问题将通过在编辑文本中使用9patch图像来解决。

使用此link将图片转换为9patch,然后在您的视图中使用

有关详细信息,请参阅Android Developers Link

P.S。我现在用它了。