我正在将图像动态加载到屏幕上的图像按钮。图像不会提前知道,并且大小不同。
有谁知道如何确保图像按钮的大小不受分配给它的任何图像的影响。最好拉伸图像以适合按钮。我尝试使用 android:scaleType="fitXY" 并将 ewidth 和 height 设置为硬值(不推荐)。无论我做什么,图像都决定了按钮的大小,反之亦然!帮助!
我尝试了以下组合。这些图像随机来自互联网搜索。
<ImageButton
android:id="@+id/ImageButton1"
android:layout_height="93px"
android:src="@drawable/image1"
android:layout_width="93px"
android:background="93px" />
<ImageButton
android:id="@+id/ImageButton4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/image1"
android:scaleType="fitXY" />
非常感谢任何帮助!