我试图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);
有人看到我的错误吗?谢谢!