gpt4 book ai didi

android - Android 上的 UIImage

转载 作者:行者123 更新时间:2023-11-28 17:56:16 25 4
gpt4 key购买 nike

我正在将一个 iOS 应用程序迁移到 Android

在 iOS 上我有一个 UIImage 对象,但我不知道我可以在 Android 上使用哪个对象。我想我可以使用 Drawable

你推荐我什么?

最佳答案

iOS相当于android中的UIImageView是ImageView。

以编程方式执行

 ImageView imgView = new ImageView(this);
//setting image position and there are other properties to position ur imageview
imgView.setLayoutParams(new LayoutParams(LayoutParams.MATCH_PARENT,LayoutParams.WRAP_CONTENT));
//adding view to your layout(linear, relative....etc)
yourLayout.addView(imgView);

//Add this is how you set your Image
this.imgView.setImageBitmap(localBitmap);

如果您使用的是 XML 文件

 //Get the reference of imageview
imgView = (ImageView) findViewById(R.id.imageView1);

//here you add your image
imgView.setImageResource(R.drawable.yourImage);

关于android - Android 上的 UIImage,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31137745/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com