gpt4 book ai didi

java - Android Studio : Layout hierarchy problems

转载 作者:行者123 更新时间:2023-12-01 08:46:21 24 4
gpt4 key购买 nike

我有一个horizo​​ntalScrollView,其中包含1 个用作背景的图像。该图像可以从左向右滚动。我想将其他 ImageView 放置到背景图像上,但不让它们随其滚动。目前,如果我在其上放置另一个 ImageView ,当我滚动图像时也会出现。

最左侧的 ScrollView :

enter image description here

最右侧的 ScrollView :

enter image description here

XML 代码:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_rear_gunner"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:focusable="true"
tools:context="com.example.mr_br.ibcc_bomber_command.rear_gunner">


<HorizontalScrollView
android:id="@+id/horizontalScrollView1"

android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fillViewport="true"
android:layout_alignParentTop="true"
>


<ImageView
android:layout_width="fill_parent"
android:layout_height="fill_parent" app:srcCompat="@drawable/background_scroll_2"
android:id="@+id/scrollView" android:layout_centerVertical="true"
android:scaleType="centerCrop"

/>

</HorizontalScrollView>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/item_frame"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:focusable="true"
tools:context="com.example.mr_br.ibcc_bomber_command.rear_gunner">

</RelativeLayout>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content" app:srcCompat="@drawable/placeholder_bomber"
android:id="@+id/enemy" android:layout_centerVertical="true"


/>


</RelativeLayout>

对于在 Android 中使用布局非常陌生。希望我清楚地说明了我的问题,如果没有,我会道歉,并会在被问到时尽力澄清。我知道这可能与我正在使用的布局以及它们的子布局和父布局有关,但正如我所说的新内容。

最佳答案

Horizo​​ntalSCrollView 只能有一个 subview ,但该 subview 可以是另一种布局,因此您可以添加任意数量的 ImageView。

  <HorizontalScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
>
<ImageView
android:layout_width="3000dp"
android:layout_height="match_parent"
android:background="#a30"
/>
<ImageView
android:layout_width="30dp"
android:layout_height="30dp"
android:background="#aa0"
/>
</RelativeLayout>
</HorizontalScrollView>

关于java - Android Studio : Layout hierarchy problems,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43022512/

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