Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以将 GUI 元素宽度定义为android:layout_width="wrap_content"但以某种方式定义最小宽度Xdp?
android:layout_width="wrap_content"
Xdp
我相信您正在寻找的属性是android:minWidth. 例如,
android:minWidth
android:minWidth="10dp"
您可以使用:
android:minHeight="20dp" android:minWidth="20dp"
在您的 xml 布局中
20dp是一个样本值
20dp