Skip to content

Commit

Permalink
Fix truncated text in about page in horizontal view
Browse files Browse the repository at this point in the history
  • Loading branch information
Biswa96 committed Nov 9, 2023
1 parent 76cd8b5 commit e19b680
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions app/src/main/res/layout/activity_about.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,17 @@
~ along with SMS Import / Export. If not, see <https://www.gnu.org/licenses/>.
-->

<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".AboutActivity">

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">

<TextView
android:id="@+id/aboutText"
android:layout_width="wrap_content"
Expand Down Expand Up @@ -152,4 +156,6 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_ToBottomOf="@+id/appDocumentation" />-->

</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>

</ScrollView>

0 comments on commit e19b680

Please sign in to comment.