3

我试图ImageButton在我的 中动态编码Activity,但它看起来非常不同。ScaleType似乎不起作用这是ImageButton我想要的方式:

     <ImageButton
            android:id="@+id/imageButton1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:adjustViewBounds="true"
            android:background="@null"
            android:scaleType="fitStart"
            android:src="@drawable/rot" />

这是我的 Java 代码在我的活动中生成它:

ImageButton field = new ImageButton(this);
                LayoutParams param = new linearLayout.LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT, 1.0f);
                field.setLayoutParams(param);
                field.setScaleType(ScaleType.FIT_START);
                field.setBackgroundResource(0);
                field.setAdjustViewBounds(true);
                field.setImageResource(R.drawable.rot);

有人看到我的错误吗?谢谢!

4

1 回答 1

0

将 ImageButtons 的宽度设置为 fill_parent 并使用 scaletype fitStart 用于紧贴左边距的图像,使用 fitEnd 用于右侧的图像。至少就您的示例图像而言,应该做到这一点。如果图像的比例宽度超过屏幕宽度,您可能会遇到一些间距问题,但它应该适合您。

于 2014-12-22T12:18:53.940 回答