0

我遵循了所有方法,但对我没有任何作用。情况就是这样,我有五个ImageButtons排成一行,每个都有一个图标和背景可绘制:

<LinearLayout
            android:layout_width="match_parent"
            android:layout_height="fill_parent"
            android:layout_weight="0.33"
            android:orientation="horizontal"
            android:weightSum="5" >

            <ImageButton
                android:id="@+id/food"
                android:layout_width="0dp"
                android:layout_weight="1"
                android:layout_height="match_parent"
                android:padding="20dp"
                android:scaleType="fitCenter"
                android:layout_marginRight="2dp"
                android:layout_marginBottom="2dp"
                android:layout_marginLeft="2dp"
                android:layout_marginTop="2dp"
                android:background="@drawable/chooser_effect"
                android:src="@drawable/restaurant_icon" />

这是我的一个 imageButtons,其他的都是一样的。当我在我的活动设备三星 S5 上测试此布局时,效果很好。因为我希望我的图标适合大约 75% 的按钮填充和 scaleType 是准确的,但是当我在屏幕尺寸较小的模拟器上运行我的应用程序时,图标太小,并且“太小”是指它们无法被看到全部。我尝试了我发现喜欢使用的所有其他解决方案,android:scaleYpe="fitXY"但后来我的图标太大了,它们的分辨率质量被弃用了。有什么线索吗?

4

0 回答 0