Android:Textview 中的规则/水平线 [英] Android: Ruled/horizontal lines in Textview

查看:15
本文介绍了Android:Textview 中的规则/水平线的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在 Android 中,我有一个 TextView,它的内容是动态的.我想在每行文本之后显示一条水平线.我搜索了很多并找到了 EditText( 如何在 Android 中使用规则/水平线对齐 EditText 中的文本?).我打算在它们下面绘制动态 TextView 和一条水平线.但我不知道如何检测行尾.任何帮助将不胜感激.我希望与 如何在Android中使用规则/水平线对齐EditText中的文本?

In Android, I have a TextView and its content will be dynamic. I want to show a horizontal line after each line of text. I have searched a lot and found it for EditText( How to use ruled/horizontal lines to align text in EditText in Android?). I was planing to draw dynamic TextView and a horizontal line under them. But I don't know how can I detect an end of line. Any help will be highly appreciated. I want to have the same effect as the attached image of How to use ruled/horizontal lines to align text in EditText in Android?

推荐答案

我在 EditText 中使用了在每一行文本之间画线的技术,然后我将制作 EditText 通过将 setKeyListener(null) 设置为自定义 EditText 对象,使 EditText 的行为类似于 TextView :)

I'm using the technique of drawing lines between each line of text in EditText and then I will make the EditText non-editable by setting setKeyListener(null) to the custom EditText object so that, the EditText acts like a TextView :)

public class LinedEditText extends EditText {
    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.STROKE);
        mPaint.setColor(0x800000FF);
    }

    @Override
    protected void onDraw(Canvas canvas) {
        int count = getLineCount();
        Rect r = mRect;
        Paint paint = mPaint;

        for (int i = 0; i < count; i++) {
            int baseline = getLineBounds(i, r);

            canvas.drawLine(r.left, baseline + 1, r.right, baseline + 1, paint);
        }

        super.onDraw(canvas);
    }
} 

<小时>

现在在您需要 TextView 的地方使用 LinedEditText 类的对象并使其不可编辑.


Now use object of LinedEditText class where you need your TextView and make it non-editable.

public class HorizontalLine extends Activity{
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {   
        super.onCreate(savedInstanceState);
        setTitle("Android: Ruled/horizonal lines in Textview");

        LinearLayout ll = new LinearLayout(this);
        ll.setOrientation(LinearLayout.VERTICAL);
        LayoutParams textViewLayoutParams = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);

        LinedEditText et = new LinedEditText(this, null);
        et.setText("The name of our country is Bangladesh. I am proud of my country :)");
        et.setLayoutParams(textViewLayoutParams);
        et.setKeyListener(null);

        ll.addView(et);
        this.setContentView(ll);

    }

}

<小时>

et.setKeyListener(null) 使 EditText 不可编辑,因此它的作用类似于 TextView.


et.setKeyListener(null) makes the EditText non-editable so, it acts like a TextView.

如果你只使用 et.setKeyListener(null) 那么它只是不听键,而是用户可以在 EditText 上看到一个光标.如果您不想要此光标,只需添加以下行即可禁用 EditText:

If you use et.setKeyListener(null) only then it is just not listening to keys but user can see a cursor on the EditText. If you don't want this cursor just disable the EditText by adding this line:

 et.setEnabled(false);

这篇关于Android:Textview 中的规则/水平线的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆