保证金设置为 Match_Parent。在模拟器中工作,但在真实设备上显示 space
Margin is set to Match_Parent. Works in emulator but shows space on real device
我有一个创建要以编程方式添加到 LinearLayout 中的 ImageView 的方法:
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;
}
我希望图片的宽度与父级相匹配,并与内容的高度相匹配。这在 Studio 提供的模拟器 Android 上完美运行。但是,当我在真实设备上安装该应用程序时,不知何故我在显示背景颜色的图像的右侧和左侧看到了一个边缘。
我尝试使用 imageView.setPadding(0, 0, 0, 0);
将填充显式设置为 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>
将图像视图比例类型设置为 fitxy
我有一个创建要以编程方式添加到 LinearLayout 中的 ImageView 的方法:
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;
}
我希望图片的宽度与父级相匹配,并与内容的高度相匹配。这在 Studio 提供的模拟器 Android 上完美运行。但是,当我在真实设备上安装该应用程序时,不知何故我在显示背景颜色的图像的右侧和左侧看到了一个边缘。
我尝试使用 imageView.setPadding(0, 0, 0, 0);
将填充显式设置为 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>
将图像视图比例类型设置为 fitxy