Skip to content

Commit

Permalink
remove scrollView in dialog_share_proxy
Browse files Browse the repository at this point in the history
  • Loading branch information
adbenitez committed Oct 22, 2024
1 parent d484dfd commit 3197ab0
Showing 1 changed file with 19 additions and 27 deletions.
46 changes: 19 additions & 27 deletions src/main/res/layout/dialog_share_proxy.xml
Original file line number Diff line number Diff line change
@@ -1,34 +1,26 @@
<?xml version="1.0" encoding="utf-8"?>
<ScrollView
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content">
android:layout_height="wrap_content"
android:paddingLeft="20dp"
android:paddingRight="20dp"
android:orientation="vertical">

<LinearLayout
android:layout_width="match_parent"
<com.caverock.androidsvg.SVGImageView
android:id="@+id/qr_image"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingLeft="20dp"
android:paddingRight="20dp"
android:orientation="vertical">

<com.caverock.androidsvg.SVGImageView
android:id="@+id/qr_image"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:padding="16dp"
android:contentDescription="@string/qrscan_title"
/>

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="16sp"
android:paddingBottom="16dp"
android:text="@string/proxy_share_explain" />
android:layout_gravity="center"
android:padding="16dp"
android:contentDescription="@string/qrscan_title"
/>

</LinearLayout>

</ScrollView>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="16sp"
android:paddingBottom="16dp"
android:text="@string/proxy_share_explain" />

</LinearLayout>

0 comments on commit 3197ab0

Please sign in to comment.