DroidFS/app/src/main/res/layout/activity_text_editor.xml

32 lines
1011 B
XML
Raw Normal View History

2020-07-17 16:35:39 +02:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:orientation="vertical">
<include android:id="@+id/toolbar" layout="@layout/toolbar"/>
2022-01-14 15:50:42 +01:00
<HorizontalScrollView
2020-07-17 16:35:39 +02:00
android:layout_width="match_parent"
2022-01-14 15:50:42 +01:00
android:layout_height="match_parent"
android:fillViewport="true">
2020-07-17 16:35:39 +02:00
2022-01-14 15:50:42 +01:00
<ScrollView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:fillViewport="true">
2020-07-17 16:35:39 +02:00
<EditText
android:id="@+id/text_editor"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2022-01-14 15:50:42 +01:00
android:gravity="top"
2020-07-17 16:35:39 +02:00
android:textSize="15sp"
android:background="@null"
android:padding="5dp"/>
2022-01-14 15:50:42 +01:00
</ScrollView>
2020-07-17 16:35:39 +02:00
2022-01-14 15:50:42 +01:00
</HorizontalScrollView>
2020-07-17 16:35:39 +02:00
</LinearLayout>