我正在关注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
只在视图中间开始,如下所示:
所以,我的问题是,如何调整此自定义EditText
,使其显示在视图开头的顶部/?
我如何修复
我将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"
是它在视图中间开始的原因。感谢您的所有贡献。
答案 0 :(得分:0)
设置
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
在您的布局文件中的自定义Edittext
中。这将产生所需的结果。