开发者

Spacing ImageButtons in Android

开发者 https://www.devze.com 2023-01-09 20:40 出处:网络
How do you space ImageButtons? With RelativeLayout, I can have them side by side but I want a gap between them.

How do you space ImageButtons?

With RelativeLayout, I can have them side by side but I want a gap between them. How do I place the buttons in the center and at the 开发者_开发问答bottom of the screen?


With RelativeLayout, I can have them side by side but I want a gap between them.

Use android:layout_marginTop and related properties.

How do I place the buttons in the center and at the bottom of the screen?

android:layout_centerHorizontal="true" and android:layout_alignParentBottom="true"

0

精彩评论

暂无评论...
验证码 换一张
取 消