特定の制限を超えて伸びない垂直線形レイアウトがあります。
これは、イメージビューで centerCrop を使用したレイアウトです http://tinypic.com/r/20nm6s/5
これはクロップ セットのないレイアウトです (全幅で巨大なはずです) http://tinypic.com/r/vzk7kw/5
私の考えでは、レイアウトに表示されていない暗黙の最大高さがあると思いますが、それがどこにあるのかわかりません。エラーを見つけることができますか?
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="@drawable/dropshadow"
>
<TextView
android:id="@+id/heading"
android:layout_gravity="center"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
/>
<ImageView
android:id="@+id/featuredimage"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:maxHeight="1000dp"
android:scaleType="centerCrop"
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp"
/>
</LinearLayout>
</RelativeLayout>