我有一个方法,可以创建一个ImageView并以编程方式添加到LinearLayout中:
private static ImageView createBaseImageView(Context context, Drawable image, float bottomMargin)
{
ImageView imageView = new ImageView(context);
imageView.setAdjustViewBounds(true);
imageView.setImageDrawable(image);
LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);
imageView.setLayoutParams(layoutParams);
return imageView;
}
我希望图像与父母的宽度匹配,并与图像的高度匹配。这在android-studio提供的模拟器上完美运行。但是,当我在真实设备上安装该应用程序时,不知何故,我在图像左侧的右侧看到了显示背景颜色的边缘。
我尝试使用imageView.setPadding(0, 0, 0, 0);
明确将padding设置为0,但这都没有帮助。
有人可以解释这种行为并提出解决方案吗?
作为附加信息,这是我的布局设置的摘要:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".Context">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/default_background"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<LinearLayout
android:id="@+id/imageLayoutView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
</LinearLayout>
</ScrollView>
</android.support.constraint.ConstraintLayout>
答案 0 :(得分:1)
将imageview比例类型设置为fitxy
答案 1 :(得分:0)
因此:android:scaleType="fitXY"
使XY标尺达到定义的宽度和高度宽度的最大宽度