gpt4 book ai didi

android - 如何检查 View 在 Android 屏幕上是否真的可见?

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

很多关于 ScrollView 的例子,但我对 RelativeLayout 没有任何想法

在RelativeLayout中,一些 View 会覆盖另一个 View 。我可以在 xml 中检查它,但是如何用 java 代码检查它?使用 isShown()、willNotDraw()、hasWindowFocus()、getLocalVisibleRect(),这些都不起作用。

案例一:容器布局真实呈现在屏幕上

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

<!--container layout is really on screen-->
<fragment
android:id="@+id/map_fragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>

<LinearLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
>
<ImageView
android:id="@+id/icon"
android:layout_width="50dp"
android:layout_height="50dp"
/>
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="18sp"
/>
</LinearLayout>
</LinearLayout>
</RelativeLayout>

案例 2:容器布局并未真正显示在屏幕上

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

<LinearLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
>
<ImageView
android:id="@+id/icon"
android:layout_width="50dp"
android:layout_height="50dp"
/>
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="18sp"
/>
</LinearLayout>
</LinearLayout>

<!--container layout is not really on screen-->
<fragment
android:id="@+id/map_fragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
</RelativeLayout>

最佳答案

尝试使用这个

   if (myView.isShown()) {
// Its visible
} else {
// Either gone or invisible
}

关于android - 如何检查 View 在 Android 屏幕上是否真的可见?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35691726/

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