Adapt the unlock button size in AuthActivity to the text width

This commit is contained in:
Alexander Bakker 2019-05-26 22:08:13 +02:00 committed by Michael Schättgen
parent 66f99eb4d4
commit 1c9d07a47d

View file

@ -38,7 +38,8 @@
android:id="@+id/text_password"/> android:id="@+id/text_password"/>
<Button <Button
android:id="@+id/button_decrypt" android:id="@+id/button_decrypt"
android:layout_width="125dp" android:minWidth="125dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="@string/unlock" /> android:text="@string/unlock" />
</LinearLayout> </LinearLayout>