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.
我正在为 Android 开发一个活动布局(一个简单的表单)。我想根据屏幕大小在线性布局中指定不同编辑文本之间的填充。
屏幕越大,我想显示的元素越分离(以避免滚动)。
清楚吗?谢谢你。
您可以指定尺寸:
值文件夹:
<dimen name="padding">10dp</dimen>
值-sw400 文件夹:
<dimen name="padding">14dp</dimen>
等等。
现在你只需要像这样指定填充:
android:padding="@dimen/padding"