宽高不确定的情况下,图片下方的那段空白怎么去掉。<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ImageButton
android:id="@+id/imageButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#00000000"
android:scaleType="fitStart"
android:src="@drawable/aaa5"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="123"
android:textSize="30sp"/>
</LinearLayout>
4 回答
小罗希冀
TA贡献13条经验 获得超7个赞
你好,建议你把ImageButton中的scaleType属性修改一下,你选择的FIT_START的作用是填充于屏幕上方,并等比例缩放、你可以尝试一下把属性设置成center
- 4 回答
- 0 关注
- 1358 浏览
添加回答
举报
0/150
提交
取消