我需要在NestedScrollView内部的Recyclerview中的CardView中显示可滚动的错误日志
到目前为止我尝试过的事情
试图使textview可滚动
<TextView
android:id="@+id/errorLog"
android:layout_width="match_parent"
android:layout_height="120dp"
android:fontFamily="monospace"
android:scrollbars="vertical"
/>
并将移动方法设置为ScrollingMovementMethod()
不可编辑的Edittext
<Edittext
android:id="@+id/errorLog"
android:layout_width="match_parent"
android:layout_height="120dp"
android:background="@null"
android:editable="false"
android:cursorVisible="false" />
他们都不为我工作