Browse Source

Left-align image alt text & make it selectable (#3063)

Fixes #2819, #2126
pull/3103/head
Eva Tatarka 3 years ago committed by GitHub
parent
commit
c7254bfc19
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      app/src/main/res/layout/fragment_view_image.xml

8
app/src/main/res/layout/fragment_view_image.xml

@ -50,11 +50,11 @@
<View
android:layout_width="24dp"
android:layout_height="3dp"
android:layout_gravity="center_horizontal"
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp"
android:layout_gravity="center_horizontal"
android:importantForAccessibility="no"
android:background="@drawable/ic_drag_indicator_horiz_24dp" />
android:background="@drawable/ic_drag_indicator_horiz_24dp"
android:importantForAccessibility="no" />
<androidx.core.widget.NestedScrollView
android:layout_width="match_parent"
@ -69,8 +69,8 @@
android:paddingLeft="8dp"
android:paddingRight="8dp"
android:paddingBottom="8dp"
android:textAlignment="center"
android:textColor="?android:textColorPrimary"
android:textIsSelectable="true"
android:textSize="?attr/status_text_medium"
tools:text="Some media description which might get quite long so that it won't easily fit in one line" />
</androidx.core.widget.NestedScrollView>

Loading…
Cancel
Save