gpt4 book ai didi

android - 在 scrollview android 中全屏显示图像

转载 作者:太空狗 更新时间:2023-10-29 14:17:27 25 4
gpt4 key购买 nike

我有一个 ScrollView ,其中我有多个图像通过代码动态添加。我只想每页显示一张图片。图片应该是全屏图片。我怎样才能通过代码实现它。如果有人知道答案,请帮助我。这是我的 xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >


<ScrollView
android:id="@+id/sv"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="none">

<LinearLayout
android:id="@+id/innerL"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >


</LinearLayout>


</ScrollView>

我在 innerL(linearlayout) 中添加图像。图像添加完美,但默认情况下它以某种方式包装内容。这是我在 innerL 中添加图像的代码:

LinearLayout ll = (LinearLayout) rootView.findViewById(R.id.innerL);
byte[] img = pt.getImage(imgurl);
if(img != null)
{
Bitmap bitmap=BitmapFactory.decodeByteArray(img,0,img.length);

ImageView newImg = new ImageView(con);

ll.addView(newImg);

newImg.setImageBitmap(bitmap);
}

最佳答案

将此属性设置为您的父 ScrollView

<ScrollView android:fillViewport="true"

然后,如果你想让你的内部图像填充整个 ScrollView ,则将 ImageView 的宽度和高度设置为 fillparent。

100% 完美运行。

关于android - 在 scrollview android 中全屏显示图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20565291/

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