是否可以将EditText的光标水平放置而不垂直放置?我想像下图所示:
[我读过一些主题,人们都在玩android:textCursorDrawable,但是我需要它来为Android <3.0设置样式。有什么想法吗?
编辑:我正在添加EditText的xml:
<EditText
android:id="@+id/edittext1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:cursorVisible="true"
android:ems="10"
android:hint="@string/id"
android:inputType="text"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:textCursorDrawable="@drawable/custom_bottom_cursor" />
我正在寻找类似的东西,但是我没有找到解决方案:(我发现的唯一想法是将cursorVisible设置为false
editText.setCursorVisible(false);
然后将char _
动态追加到edittext的末尾,将一组闪烁的动画追加到]的末尾
Animation anim = new AlphaAnimation(0.0f, 1.0f);
anim.setDuration(50); //You can manage the time of the blink with this parameter
anim.setStartOffset(20);
anim.setRepeatMode(Animation.REVERSE);
anim.setRepeatCount(Animation.INFINITE);
lastChar.startAnimation(anim);
1)创建一个可绘制游标。
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<size
android:width="20dp"
android:height="1dp" />
<solid
android:color="#000000" />
<padding
android:top="-20sp"
android:bottom="1sp" />
</shape>
或您喜欢的。2)android:textCursorDrawable="@drawable/cursor_drawable"
但这仅适用于Honeycomb或更高版本...
这里是我如何实现此屏幕的另一个示例:
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<EditText
android:layout_width="53dp"
android:layout_height="67dp"
android:inputType="numberDecimal"
android:background="@drawable/background"
android:textCursorDrawable="@drawable/line"
android:cursorVisible="true"
android:gravity="center"
android:maxLength="1"
android:textSize="40sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
背景
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#FFFFFF" />
<stroke
android:width="2dp"
android:color="#777777" />
<corners
android:bottomLeftRadius="7dp"
android:bottomRightRadius="7dp"
android:topLeftRadius="7dp"
android:topRightRadius="7dp" />
</shape>
水平线
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
<size android:width="20dp"/>
<solid android:color="#9C27B0"/>
<padding
android:top="-47sp"
android:bottom="-5sp"
android:left="10dp"/>
</shape>
如果更改EditText的高度和宽度,则必须更新“水平线”的填充