我有一个小部件,它使用 PercentRelativeLayout 在其中放置 4 个 ImageView。我需要百分比功能,因为我将图像沿着盒子的 4 个边放置,但相对大小不同:顶部的孩子占据了大约 60% 的高度。我已经自己预览了这个布局,效果很好,没问题。这个小部件wrap_content
适用于 w 和 h(w 我不太关心,但 h 很重要,正如您将看到的那样。)
我需要在更大的布局中使用这个小部件。现在我有另一个父RelativeLayout。此布局应在顶部包含所描述的小部件,然后在其下方包含一些按钮,以线性方式:|--(group widget)--(text button)--(image button)—-|
,其中 '|' 表示它应该紧贴父母。(这是一个相对的原因是我想在右下角浮动另一个视图。)
所以目标是:这个父布局应该调整到某个预定义的大小(基本上是屏幕,虽然在我的完整代码中还有更多高于这个级别 - 但我的问题只是在这个级别上发生隔离),2个按钮应该计算他们的自然大小并使用它,然后顶部的 PercentRelativeLayout 应该采用“剩余”高度并将其用于其子级的 % 大小。
实际上,如屏幕截图所示(来自布局预览工具)- PercentRelativeLayout 吸收了所有大小。
简而言之,您能否将一系列视图以相对布局固定在一起并拥有一个可变的子项?在 iOS 中,我会将第一个视图固定到父顶部,将最后一个视图固定到父底部,并将所有内容固定到它上面的东西上,按钮有它们的固有大小,然后我的神秘小部件会吸收其余部分。
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#f2dce8ff"
android:layout_marginTop="8dp"
xmlns:android="http://schemas.android.com/apk/res/android">
<android.support.percent.PercentRelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
xmlns:tools="http://schemas.android.com/tools"
android:animateLayoutChanges="true"
android:id="@+id/matchPlay">
<ImageView
android:src="@drawable/model_2"
tools:background="#954f47"
app:layout_heightPercent="59%"
app:layout_aspectRatio="100%"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:adjustViewBounds="false"
android:id="@+id/avatarView1"
android:scaleType="centerInside" />
<ImageView
android:src="@drawable/model_2"
tools:background="#ff0000"
app:layout_heightPercent="20%"
app:layout_aspectRatio="100%"
app:layout_marginTopPercent="2%"
android:layout_below="@id/avatarView1"
android:layout_alignParentLeft="true"
android:adjustViewBounds="false"
android:id="@+id/avatarView2"
android:scaleType="centerCrop" />
<ImageView
android:src="@drawable/model_2"
tools:background="#00ff00"
app:layout_heightPercent="20%"
app:layout_aspectRatio="100%"
app:layout_marginTopPercent="2%"
android:layout_below="@id/avatarView1"
android:layout_alignParentRight="true"
android:adjustViewBounds="false"
android:id="@+id/avatarView3"
android:scaleType="centerCrop" />
<ImageView
android:src="@drawable/model_2"
tools:background="#0000ff"
app:layout_heightPercent="22%"
app:layout_aspectRatio="100%"
android:layout_below="@id/avatarView2"
android:layout_centerHorizontal="true"
android:adjustViewBounds="false"
android:id="@+id/avatarView4"
android:scaleType="centerCrop" />
</android.support.percent.PercentRelativeLayout>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/matchplay_add_shout"
android:id="@+id/shoutButton"
android:enabled="false"
android:layout_centerHorizontal="true"
android:layout_below="@id/matchPlay" />
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/submitButton"
android:src="@drawable/matchplay_submit"
android:layout_centerHorizontal="true"
android:layout_below="@id/shoutButton"
android:minWidth="50dp"
android:contentDescription="@string/matchplay_send_contentdesc" />
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/passButton"
android:src="@drawable/matchplay_pass"
android:layout_alignParentEnd="true"
android:layout_alignParentBottom="true"
android:contentDescription="@string/matchplay_pass_contentdesc" />
编辑:我更新了这段代码以不使用 alignParentBottom,认为这是关键问题;我改为使用 alignParentTop。没变。还尝试在根部使用垂直线性布局。:(
顺便说一下,图像组小部件将是一个 PercentRelativeLayout 子类,所以如果我需要在那里通过一些覆盖来创造一些魔法,我可以做到这一点。