|
1 | 1 | <?xml version="1.0" encoding="utf-8"?><!--
|
2 |
| - ~ SMS Import / Export: a simple Android app for importing and exporting SMS messages from and to JSON files. |
3 |
| - ~ Copyright (c) 2021-2022 Thomas More |
| 2 | + ~ SMS Import / Export: a simple Android app for importing and exporting SMS and MMS messages, |
| 3 | + ~ call logs, and contacts, from and to JSON / NDJSON files. |
| 4 | + ~ |
| 5 | + ~ Copyright (c) 2021-2025 Thomas More |
| 6 | + ~ Copyright (c) 2022 Bindu |
4 | 7 | ~
|
5 | 8 | ~ This file is part of SMS Import / Export.
|
6 | 9 | ~
|
|
18 | 21 | ~ along with SMS Import / Export. If not, see <https://www.gnu.org/licenses/>.
|
19 | 22 | -->
|
20 | 23 |
|
21 |
| -<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 24 | +<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" |
22 | 25 | xmlns:app="http://schemas.android.com/apk/res-auto"
|
23 | 26 | xmlns:tools="http://schemas.android.com/tools"
|
24 |
| - android:fitsSystemWindows="true" |
25 | 27 | android:layout_width="match_parent"
|
26 | 28 | android:layout_height="match_parent"
|
| 29 | + android:fillViewport="true" |
| 30 | + android:fadeScrollbars="false" |
27 | 31 | tools:context=".MainActivity">
|
28 | 32 |
|
| 33 | + <androidx.constraintlayout.widget.ConstraintLayout |
| 34 | + android:layout_width="match_parent" |
| 35 | + android:layout_height="wrap_content" |
| 36 | + android:fitsSystemWindows="true"> |
| 37 | + |
29 | 38 | <androidx.appcompat.widget.Toolbar
|
30 | 39 | android:id="@+id/toolbar"
|
31 | 40 | android:layout_width="0dp"
|
|
171 | 180 | app:layout_constraintStart_toStartOf="parent"
|
172 | 181 | app:layout_constraintTop_toBottomOf="@+id/default_sms_app_warning" />
|
173 | 182 |
|
174 |
| -</androidx.constraintlayout.widget.ConstraintLayout> |
| 183 | + </androidx.constraintlayout.widget.ConstraintLayout> |
| 184 | + |
| 185 | +</ScrollView> |
0 commit comments