gpt4 book ai didi

android - 具有多行的 EditText,就像记事本一样

转载 作者:行者123 更新时间:2023-12-05 07:39:52 26 4
gpt4 key购买 nike

我正在按照 max4ever 给出的示例进行操作他在那里展示了如何实现我正在寻找的东西。我创建了一个自定义 EditText 类:

public class LinedEditText extends AppCompatEditText {
private Rect mRect;
private Paint mPaint;

// we need this constructor for LayoutInflater
public LinedEditText(Context context, AttributeSet attrs) {
super(context, attrs);

mRect = new Rect();
mPaint = new Paint();
mPaint.setStyle(Paint.Style.FILL_AND_STROKE);
mPaint.setColor(getResources().getColor(R.color.black)); //SET YOUR OWN COLOR HERE
}

@Override
protected void onDraw(Canvas canvas) {
//int count = getLineCount();

int height = getHeight();
int line_height = getLineHeight();

int count = height / line_height;

if (getLineCount() > count)
count = getLineCount();//for long text with scrolling

Rect r = mRect;
Paint paint = mPaint;
int baseline = getLineBounds(0, r);//first line

for (int i = 0; i < count; i++) {

canvas.drawLine(r.left, baseline + 1, r.right, baseline + 1, paint);
baseline += getLineHeight();//next line
}

super.onDraw(canvas);
}
}

然后我将它添加到我的布局 .xml 中,如下所示:

<?xml version="1.0" encoding="utf-8"?>
<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"
tools:context="myapp.com.test.NotesLayout">

<myapp.com.test.LinedEditText
android:layout_width="match_parent"
android:layout_height="match_parent" />

</RelativeLayout>

我遇到的问题是 EditText 只在 View 中间开始,如下所示:

preview

所以,我的问题是,如何调整这个自定义的 EditText 以便它显示在顶部/从 View 的开始?


我是如何解决的

我把我的 xml 改成了这个

<myapp.com.test.LinedEditText
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@null"
android:imeOptions="actionNone"
android:gravity="top"
/>

设置 android:gravity="top" 是它从 View 中间开始的原因。感谢您的所有贡献。

最佳答案

设置

android:layout_height="wrap_content"
android:layout_alignParentTop="true"

在布局文件中的自定义 Edittext 中。这将产生所需的结果。

关于android - 具有多行的 EditText,就像记事本一样,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46783988/

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