1

所以,我坚持了一段时间,

我有这个:

在此处输入图像描述

我想要这样的东西: 在此处输入图像描述

我不明白我在代码中做错了什么

XML 是:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center_vertical"
    android:paddingLeft="8dp"
    android:paddingRight="8dp" >

    <TextView
        android:id="@+id/title"
        style="@style/CardTitle"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="0.1"
        android:text="title" />
</LinearLayout>

<View
    android:layout_width="fill_parent"
    android:layout_height="1dp"
    android:layout_marginTop="4dp"
    android:background="@color/stroke" />

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/selectable_background_cardbank"
    android:gravity="top"
    android:padding="4dp" >

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/image" />
</LinearLayout>

4

1 回答 1

1

我刚刚找到了答案

机器人:adjustViewBounds =“真”

在 xml 或

imageView.setAdjustViewBounds(true)

在爪哇。

于 2013-11-05T05:27:30.093 回答