gpt4 book ai didi

Android 微调器箭头总是在其他 View 之上

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:45:56 25 4
gpt4 key购买 nike

在我的应用程序中,我在 scrollView 中有一些微调器(每个微调器都是 fragment 的一部分)。此 scrollView 位于 textView 下方。

问题是,当我在我的测试设备(Samsung Galaxy S6 Edge [G925F],API 23)上运行该应用程序时,微调器的小箭头在 textView 上方保持可见,即使微调器已经不在视线范围内。

我做了很多研究,但找不到任何解决方案,所以我在这里问:我需要做什么才能使箭头像微调器的其余部分一样消失?

这里有一些图片:

在这张图片中,在我向下滚动之前,您可以在 Activity 顶部和微调器下方看到 textView

在此屏幕截图中,您可以看到问题所在。微调器的小三角形仍然可见,但微调器本身已经滚出视野。

这是包含微调器的 fragment 的 XML 代码:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent">
<LinearLayout
android:id="@+id/fragLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/gradeDisplay"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="15dp"
android:layout_marginLeft="15dp"
android:text="1"
android:textSize="30dp"/>
<Spinner
android:id="@+id/spinner"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="30dp"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:entries="@array/grades"/>
<ImageButton
android:id="@+id/imageButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:layout_marginEnd="15dp"
android:layout_marginRight="15dp"
android:src="@drawable/ic_remove_black_24dp"
android:background="@null"/>
</LinearLayout>
<Space
android:layout_width="0dp"
android:layout_height="5dp"
android:layout_below="@id/fragLayout"/>
</RelativeLayout>

这是 MainActivitys 内容的代码:

<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: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"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="de.jeanma.android.avo.MainActivity"
tools:showIn="@layout/activity_main">
<Space
android:id="@+id/mainContentSpace"
android:layout_width="match_parent"
android:layout_height="16dp" />
<TextView
android:id="@+id/textView"
android:layout_below="@id/mainContentSpace"
android:layout_width="match_parent"
android:text="Standard text"
android:layout_height="wrap_content"
android:textSize="40dp"
android:gravity="end"/>
<ScrollView
android:id="@+id/scrollView"
android:layout_below="@id/textView"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/layout"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:divider="@drawable/divider"
android:showDividers="middle">
</LinearLayout>
</ScrollView>
</RelativeLayout>

fragment 通过 Java 方法添加到 LinearLayout (@id/layout)。如果需要,我也会在这里发布。

我用的是Java 1.8.05,目标SDK是23,最小是14。代码是用Android Studio写的

有问题的 textView 是 @id/textView,在顶部显示大数字。

最佳答案

@jeanma 你可以通过设置来解决这个问题

android:background="#00FFFFFF"

对于您的 ScrollView 或 ScrollView 的根 LinearLayout

关于Android 微调器箭头总是在其他 View 之上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36167187/

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