Я хочу показать свой код Java во фрагменте с представлением кода, и теперь моя проблема в том, что мой код работает только для прокрутки вниз, но я хочу, чтобы прокрутка могла кодировать по горизонтали и вертикали одновременно, так что теперь, что я могу сделать?
Я уже попробовал, вложив horizontalscrollview и scrollview, но он не работает, и мое приложение сломалось.
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="saiful" />
<thereisnospon.codeview.CodeView
android:id="@+id/codeViewId"
android:layout_width="match_parent"
android:layout_height="match_parent">
</thereisnospon.codeview.CodeView>
</LinearLayout>
</ScrollView>
и мой файл java
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_java, container, false);
codeView = view.findViewById(R.id.codeViewId);
codeView.setTheme(CodeViewTheme.ANDROIDSTUDIO).fillColor();
codeView.showCode(Content.java);
return view;
}