gpt4 book ai didi

android - 在ImageView中设置图片宽高

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:33:35 25 4
gpt4 key购买 nike

无论我尝试什么,我都无法设置从 soap 服务传递到我的 android 模拟器的图像的宽度和高度。我正在使用 ImageView,如下所示:

            byte[] bloc = Base64.decode(result, Base64.DEFAULT);         
Bitmap bmp = BitmapFactory.decodeByteArray(bloc,0,bloc.length);
ImageView image = new ImageView(this);
image.setImageBitmap(bmp);
image.setLayoutParams(
new LinearLayout.LayoutParams(
LinearLayout.LayoutParams.WRAP_CONTENT,
LinearLayout.LayoutParams.WRAP_CONTENT));
image.getLayoutParams().height = 100;
image.getLayoutParams().width = 100;
setContentView(image);

在上面的代码中,我试图手动设置宽度和高度为 259px 宽度和 194px 高度的 jpeg 图像。

/res/layout/main.xml 看起来像

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:weightSum="1" android:id="@+id/llid">
</LinearLayout>

在尝试了下面答案中的一些方法之后,我只在我的模拟器上看到了以下内容

enter image description here

我什至不确定我采用的方法是否正确。我通过搜索论坛找到的大多数其他解决方案都不适合我。任何建议都会很棒。

最佳答案

这样试试。利用 yourBitmap.getWidth().getHeight()

  image.setLayoutParams(
new LinearLayout.LayoutParams(
bmp.getWidth(),
bmp.getHeight()));

编辑:

现在您已经为 ImgView 设置了 LP,您要做的第一件事就是将它添加到布局中

LinearLayout ll = (LinearLayout)findViewById(R.layout.llid);

现在您可以直接添加 View ,也可以将参数分开并使用 .addView(view, params) 添加。或 .addView(View);你来电。

你是这样的

ll.addView(image);

希望它有用

关于android - 在ImageView中设置图片宽高,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6817824/

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