我有一张我想显示的图像,上面有文字,下面有一行。我希望图像使用所提供空间的宽度,然后高度刚好足以不浪费空间。当前的 XML 设置是:
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/name"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="18sp"
android:textStyle="normal"
android:paddingLeft="5dp"
android:paddingRight="5dp"
android:text="" />
<ImageView
android:id="@+id/photoStatic"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding ="5dp"
android:layout_gravity="center"
android:layout_weight="0"/>
<View
android:layout_marginTop="8dp"
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@color/grey" />
</LinearLayout>
这是它最终的样子:
我想消除图像下方和上方的空白空间,因此它可以完美地调整图像大小。我试过修改android:layout_height
and android:layout_width
没有太大的成功。