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 中,我需要使用 XML 布局(而不是编程)设计一个简单的布局:
我需要具备以下条件:
1- 左侧的小图像视图(垂直居中)
2-三个图像视图彼此稍大(也垂直居中)
3-右侧的小图像视图(垂直居中)
所以 5 个图像水平相邻,垂直居中。
这很简单,无论如何问题是如何指定图像视图以调整屏幕高度的百分比?
因此,如果我将三个图像项指定为屏幕高度的 60%,我希望 imageView 的大小(包括源图像)调整为屏幕高度的 60%。
它可以实现吗?
谢谢
是的,它是一个 LinearLayout(Horizontal),然后给所有的孩子(这里的 Imageviews) layout:height="0dp" and layout:weight=".6",先试试这个,如果你有任何进一步的问题,请更新问题
layout:height="0dp" and layout:weight=".6"