我正在测试滑动以在我的项目中加载图像。
我创建了以下布局
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ImageView
android:id="@+id/imageview"
android:background="#550000ff"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
当我加载imageView.setImageResource(int)
图像时,它正确加载(见下面的截图)
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ImageView imageView= (ImageView) findViewById(R.id.imageview);
imageView.setImageResource(R.drawable.pen_logo);
}
但是当我用滑动加载它时,图像会扩展而忽略 wrap_content 布局参数:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ImageView imageView = (ImageView) findViewById(R.id.imageview);
Glide.with(this).load(R.drawable.pen_logo).into(imageView);
}
我该如何解决这个问题?