【发布时间】:2016-09-17 03:13:06
【问题描述】:
所以我有一个ImageButton,但图像非常适合它。我尝试了android:scaleType="center",但它失败了,因为图像居中但它太小了,尝试了fitXY,但结果相同。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#f1e8e8"
tools:context="com.example.bassam.myapplication123.MainActivity">
<ImageButton android:id="@+id/myButton"
android:layout_width="match_parent"
android:layout_height="150dp"
android:padding="100dip"
android:background="#ffffff"
android:src="@drawable/Work"
android:scaleType="fitXY"
></ImageButton>
</RelativeLayout>
【问题讨论】:
-
可以分享一下你想要实现的截图吗
-
把drawable放到后台
android:background="@drawable/Work" -
postimg.org/image/cpn21024h@PhanVănLinh
-
@DkgMarine 也分享你想要实现的图片
-
@SecretCoder 我正在尝试别的东西,但忘了删除它大声笑
标签: android image android-studio