设计编辑文本代码编辑器,行号不可滚动

Design Edit Text Code Editor with line number not scrollable

我正在尝试借助 Android Edit Text 设计一个代码编辑器。我正在使用与其平行的文本视图,它显示行号。它工作正常但问题是在下降超过 30 行后它的文本视图保持不变但编辑文本变得可以滚动我可以使文本视图可以滚动但它不会相对于编辑文本滚动。主要问题是滚动。如果有人可以帮助我更正此问题或使用类似的简单 activity 来使用行号进行编码,那么我将能够进一步将该文本保存在文件中。 下面是我试过的 Activity 和 xml 代码。

MainActivity.java

package com.rk.codeareadesignworkingedittextline;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.text.Editable;
import android.text.TextWatcher;
import android.widget.EditText;
import android.widget.TextView;



public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        final EditText ed=(EditText)findViewById(R.id.editText);
        final TextView tv=(TextView)findViewById(R.id.textView);

        ed.addTextChangedListener(new TextWatcher() {
            @Override
            public void beforeTextChanged(CharSequence s, int start, int count, int after) {
                int lines=ed.getLineCount();
                String lineText="";
                for (int i=1;i<=lines;i++){
                    lineText=lineText+i+"\n";
                    tv.setText(lineText);
                }
            }

            @Override
            public void onTextChanged(CharSequence s, int start, int before, int count) {

            }

            @Override
            public void afterTextChanged(Editable s) {

            }
        });
    }
}  

下面是 xml 文件

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.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">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="horizontal">

        <TextView
            android:id="@+id/textView"
            android:layout_width="51dp"
            android:layout_height="587dp"
            android:background="#eeeeee"
            android:gravity="center_horizontal"
            android:padding="12dp"
            android:text="1"
            android:textSize="18dp" />

        <EditText
            android:id="@+id/editText"
            android:layout_width="350dp"
            android:layout_height="595dp"
            android:ems="10"
            android:gravity="left|top"
            android:inputType="textMultiLine"
            android:text=""
            android:textSize="18dp" />
    </LinearLayout>

</android.support.constraint.ConstraintLayout>

将您的 EditText 放入 ScrollView。并让 EditText 和 TextView 使用 wrap_content.

尽可能地扩展
<ScrollView
  android:layout_width="match_parent"
  android:layout_height="match_parent">

  <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal">

    <TextView
        android:id="@+id/textView"
        android:layout_width="51dp"
        android:layout_height="wrap_content"
        android:background="#eeeeee"
        android:gravity="center_horizontal"
        android:padding="12dp"
        android:text="1"
        android:textSize="18dp" />

    <EditText
        android:id="@+id/editText"
        android:layout_width="350dp"
        android:layout_height="wrap_content"
        android:ems="10"
        android:gravity="left|top"
        android:inputType="textMultiLine"
        android:text=""
        android:textSize="18dp" />

  </LinearLayout>

</ScrollView>

试试这个

<?xml version="1.0" encoding="utf-8"?>
<ScrollView 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">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="horizontal">

        <TextView
            android:id="@+id/textView"
            android:layout_width="51dp"
            android:layout_height="match_parent"
            android:background="#eeeeee"
            android:gravity="center_horizontal"
            android:padding="12dp"
            android:text="1"
            android:textSize="18dp" />

        <EditText
            android:id="@+id/editText"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:ems="10"
            android:textAlignment="textStart"
            android:inputType="textMultiLine"
            android:text=""
            android:textSize="18dp" />
    </LinearLayout>

</ScrollView>