行を表示する ListView があります
これはxmlです:
...
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="5dp"
android:layout_weight="1"
android:background="@color/white"
android:orientation="vertical" >
<FrameLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight=".30">
<ImageView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:background="@drawable/face"
android:scaleType="centerCrop" />
</FrameLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight=".70"
android:background="@color/white"
android:padding="4dp" >
// Other views...
</LinearLayout>
</LinearLayout>
…
この結果を取得します。
これが元の画像です
次のように、スケーリングなしの画像が必要です。
私はアンドロイドを使用しています: ScaleType = "centerCrop" 私はアンドロイドでテストしました: AdjustViewBounds = "true" および他の多くのパラメーターを使用していますが、成功することはありませんでした
アイデア?
前もって感謝します