Is it possible to define GUI element width as android:layout_width="wrap_content"
but somehow define minimal width of Xdp
?
Android: android:layout_width=wrap_content but not less than X dp?
Asked Answered
I believe the attribute you are looking for is android:minWidth
. For example,
android:minWidth="10dp"
you can use:
android:minHeight="20dp"
android:minWidth="20dp"
in your xml layout
20dp
is a sample value
© 2022 - 2024 — McMap. All rights reserved.