gpt4 book ai didi

android - Ion 将 imageView 高度设置为错误值

转载 作者:行者123 更新时间:2023-11-30 02:38:06 26 4
gpt4 key购买 nike

我不知道为什么会这样:用 Ion 库加载图像后,我的图像在图像下方和上方显示两个白条。我不想拥有那个。

bildschirmfoto 2014-10-03 um 15 42 25

我的 ImageView 显示在 ListView 项中。我的适配器代码如下所示:

if (node.getImageUrl() != null) {    ivImage.setVisibility(View.VISIBLE);    Ion.with(ivImage)            .placeholder(R.drawable.anne_eli_icons_set_up_anne_eli_logo_530px)            //.error(R.drawable.error_image)            //.animateLoad(android.R.anim.cycle_interpolator)            .animateIn(android.R.anim.fade_in)            .load("http://app.anne-eli.at/" + node.getImageUrl().getUrlBig());} else {    ivImage.setVisibility(View.GONE);}

我的 imageview 布局是这样的:
<LinearLayout ...
<ImageView
android:id="@+id/fragment_appointment_list_item_article_iv_image"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/anne_eli_icons_set_up_anne_eli_logo_530px"
android:background="@color/gray1" />
</LinearLayout>

有什么想法吗?

最佳答案

将您的 imageview 布局更改为此:

<LinearLayout ...
<ImageView
android:id="@+id/fragment_appointment_list_item_article_iv_image"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scaleType="fitXY" <!-- this line added , also your can use other value too like cropCenter ... -->
android:src="@drawable/anne_eli_icons_set_up_anne_eli_logo_530px"
android:background="@color/gray1" />
</LinearLayout>

关于android - Ion 将 imageView 高度设置为错误值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26187964/

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