gpt4 book ai didi

java - 我的布局标记使用带有 ImageView 和 TextView 的 ScrollView 移动

转载 作者:行者123 更新时间:2023-12-02 08:55:18 26 4
gpt4 key购买 nike

我是 Android 开发人员的新用户。实际上我有一个问题我很长时间都无法解决。

我有一个带有Scroll View的布局,这个ScrollView中有ImageView和TextView。你可以在我的代码中看到它:

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

<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:gravity ="center"
android:fillViewport="true"
android:id="@+id/scrollView">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<ImageView
android:id="@+id/imageInfo"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scaleType="fitCenter"
android:padding="10dp"/>

<TextView
android:id="@+id/textInfo"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:gravity="center" />

</LinearLayout>

</ScrollView>

</LinearLayout>

我从 JSON 中获取数据并使用此布局将其输入。有些图像具有不同的形式。所以,请帮我解决一下。我必须如何处理布局标记以及我必须使用什么scaleType。提前致谢。

附注抱歉我的英语)

最佳答案

如果您发布了从 json 获取数据的代码,将会很有帮助。要选择正确的比例类型,this可能有帮助。

关于java - 我的布局标记使用带有 ImageView 和 TextView 的 ScrollView 移动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60529710/

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