我使用通用圖像加載器(UIL)在列表視圖中緩存和顯示圖像。Android /通用圖像加載器:不顯示圖像
我不能讓我想上面顯示圖像的描述圖像具有以下佈局列表視圖的項目
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<ImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<TextView
android:id="@+id/title"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
</LinearLayout>
顯示的圖像。圖像的寬度是設備的整個寬度,圖像的高度根據圖像的寬度自動縮放。
使用寬度和高度的「wrap_content」,我可以讓我的圖像顯示在其他不使用UIL的項目中。我不確定我在UIL的配置中做了什麼錯誤(我在他們的Github的例子中使用了相同的配置),但是圖像沒有用上面的佈局進行dsiplay。實際上他們顯示0高度。我可以讓他們顯示,如果我提供一個固定的高度,像
<ImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="300dp"
/>
請讓我知道如果你有任何解決方案。