我在檢測GUI上的屏幕點擊時遇到了一些麻煩。縱向工作但橫向失效,請參見下文。在風景中檢測點擊屏幕
我有一個GUI(Fragment
),其中包含一些說明+圖像。用戶需要點擊屏幕上的任意位置才能繼續。爲了捕獲點擊/點擊事件,我已經放入了填充整個屏幕並坐在其他元素上的View
(頂視圖),然後我聽取點擊這個視圖並且它工作正常。
問題是在橫向模式下,文本和圖像佔用很多空間。所以整個事情現在被包裝在一個ScrollView
。這是問題開始的地方。當ScrollView
處於活動狀態時(即您可以滾動/滾動條可見),我頂部的視圖(頂視圖)消失。看起來,在橫向模式下,ScrollView
中的內容高度正在改變。作爲一個實驗,我用Button
取代了View
,當ScrollView
可用時,Button
從縱向填充屏幕變爲橫向模式的正常高度。
有沒有一種方法可以檢測到用戶在屏幕上點擊,它與ScrollView
控件一起作爲頂層元素。我試過用幾種方法重新排列GUI,但沒有成功,我試着將onClick
事件處理程序添加到ScrollView
,也沒有成功。
我的佈局如下,注意我的頂視圖是半透明的紅色,所以我可以看到它覆蓋的區域。
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
android:clickable="true" >
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:orientation="vertical" >
<TextView
android:id="@+id/txtInstructions"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_horizontal|center_vertical"
android:padding="10dp"
android:text="@string/instructions"
android:textColor="@color/blue"
android:textSize="20sp" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:adjustViewBounds="true"
android:maxWidth="250dp"
android:padding="20dp"
android:src="@drawable/main_camera" />
</LinearLayout>
<View
android:id="@+id/view_to_listen_for_touch"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#88FF0000"
android:clickable="true" />
</RelativeLayout>
我不希望將scrollview作爲頂層佈局。我會嘗試你建議的代碼。我曾嘗試過,但也許我做錯了。當我上次嘗試將視圖放在滾動視圖上時,在框架佈局中,它停止了滾動的滾動視圖。 – JonWillis
剛剛嘗試過你的確切代碼。當視圖位於滾動視圖之上時,不能滾動滾動視圖。它需要在裏面。 – JonWillis
@JonWillis抱歉,我在發佈答案時完全忘記了'ScrollView'。我已經編輯了我的答案,併發布了一個解決方案,該方案應該可以在我測試它時發揮作用,但它並不那麼漂亮。 – Luksprog