isolaatti-android/app/src/main/res/layout/fragment_images.xml

22 lines
860 B
XML
Raw Normal View History

2023-02-11 23:41:23 -06:00
<?xml version="1.0" encoding="utf-8"?>
2023-07-15 20:58:57 -06:00
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
2023-02-11 23:41:23 -06:00
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
2023-07-15 20:58:57 -06:00
android:layout_height="wrap_content">
2023-02-11 23:41:23 -06:00
2023-07-15 20:58:57 -06:00
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="2000dp"
android:text="@string/images"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</ScrollView>
</FrameLayout>