gpt4 book ai didi

android - Match_parent 布局内部高度与 wrap_content 高度

转载 作者:太空宇宙 更新时间:2023-11-03 10:52:33 25 4
gpt4 key购买 nike

我试图用右侧的可绘制阴影覆盖我的整个列表项。

问题是我包裹可绘制对象的布局没有恒定的高度。我厌倦了将我的 drawable 设置为对齐父级顶部和对齐父级底部,但它仍然没有拉伸(stretch)其父级布局的整个高度。

看右边的阴影(我提供了一个最小高度属性让它可见,第四个列表项比最小 View 大,阴影没有拉伸(stretch))

enter image description here

来源:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >

<include layout="@layout/list_item_header" />

<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content" >

<ImageView
android:id="@+id/img_news_thumb"
android:layout_width="@dimen/listview_one_row"
android:layout_height="@dimen/listview_one_row"
android:scaleType="centerCrop"
android:src="@drawable/default_news_thumb" />

<TextView
android:id="@+id/txt_news_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_alignWithParentIfMissing="true"
android:layout_marginLeft="@dimen/space_m"
android:layout_marginTop="@dimen/space_s"
android:layout_toRightOf="@+id/img_news_thumb"
android:ellipsize="marquee"
android:paddingRight="@dimen/space_m"
android:singleLine="false"
android:text="Title"
android:textSize="14sp"
android:textStyle="bold" />

<TextView
android:id="@+id/txt_news_date"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignWithParentIfMissing="true"
android:layout_below="@+id/txt_news_title"
android:layout_marginBottom="0dp"
android:layout_marginLeft="@dimen/space_m"
android:layout_marginTop="@dimen/space_s"
android:layout_toRightOf="@+id/img_news_thumb"
android:ellipsize="end"
android:paddingRight="@dimen/space_m"
android:singleLine="true"
android:text="Date"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="@color/font_light" />

**<ImageView
android:id="@+id/img_news_list_shadow"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_alignTop="@+id/img_news_thumb"
android:minHeight="@dimen/listview_one_row"
android:scaleType="fitXY"
android:src="@drawable/list_shadow_r" />**

<ImageView
android:id="@+id/img_selected_arrow"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:scaleType="fitXY"
android:src="@drawable/list_item_arrow"
android:visibility="gone" />
</RelativeLayout>

<include layout="@layout/list_item_devider" />

</LinearLayout>

最佳答案

发现这是不可能的,因为在这种情况下父布局即线性布局在 ListView 中使用时总是包装内容。

关于android - Match_parent 布局内部高度与 wrap_content 高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11082793/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com