gpt4 book ai didi

android - 在 ScrollView 中显示图像时出现问题

转载 作者:行者123 更新时间:2023-11-30 01:32:35 25 4
gpt4 key购买 nike

我有一个使用 ViewPager 来查看多张图片的 Activity 。每个 fragment 在 RelativeLayout 中都有一个 TextView 和一个 ImageView。我试图将 RelativeLayout 放在 ScrollView 中,以便它支持滚动。但是,当我这样做时,我的图像会缩小并且不会占据整个屏幕宽度。有人可以强调可能导致此问题的原因。这是我的 Activity

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.design.widget.CoordinatorLayout
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/main_content"
android:layout_width="match_parent" android:layout_height="match_parent"
android:layout_above="@id/ad_view"
android:fitsSystemWindows="true" tools:context=".activities.SliderImageActivity">

<android.support.design.widget.AppBarLayout android:id="@+id/appbar"
android:layout_width="match_parent" android:layout_height="wrap_content"
android:paddingTop="@dimen/appbar_padding_top"
android:theme="@style/AppTheme.AppBarOverlay">

<android.support.v7.widget.Toolbar android:id="@+id/toolbar"
android:layout_width="match_parent" android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary" app:popupTheme="@style/AppTheme.PopupOverlay"
app:layout_scrollFlags="scroll|enterAlways">

</android.support.v7.widget.Toolbar>

</android.support.design.widget.AppBarLayout>

<android.support.v4.view.ViewPager android:id="@+id/container"
android:layout_width="match_parent" android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
/>
</android.support.design.widget.CoordinatorLayout>

<com.google.android.gms.ads.AdView
android:id="@+id/ad_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
ads:adSize="BANNER"
ads:adUnitId="@string/banner_ad_unit_id" />

这是我的 fragment

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="none|vertical">
<LinearLayout xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".activities.SliderImageActivity$PlaceholderFragment">

<TextView android:id="@+id/section_label" android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="20sp"
android:textStyle="bold"
android:textColor="#000080" />

<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/imageView" />

</LinearLayout>
</ScrollView>

这是我现在看到的 Activity

Screenshot

我想看到这个图像占据完整的宽度(因为它原来有那么大的宽度)并且应该紧挨着 TextView 的下方

最佳答案

尝试在您的 ImageView 中添加 android:scaleType="center"

<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="center"
android:id="@+id/imageView" />

关于android - 在 ScrollView 中显示图像时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35546675/

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