很多ScrollView的例子,但我對RelativeLayout沒有任何意見如何檢查Android中的屏幕是否真的可見?
在RelativeLayout中,有些視圖會覆蓋另一個視圖。 我可以在xml中檢查它,但如何檢查它與Java代碼? 使用isShown(),willNotDraw(),hasWindowFocus(),getLocalVisibleRect(),那些不起作用。
案例1:容器佈局真的是在屏幕上
<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>
在情況2中,容器是可見的。但它不顯示在屏幕上 –