0

我在檢測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> 

回答

1

一兩件事,工作(雖然看起來更像是一個黑客(相當醜陋的))是在代碼編程添加特殊View(在onCreate方法),並設置基礎上,其尺寸父母RelativeLayout的尺寸。這裏是一段代碼:

//... 
     final RelativeLayout parent = (RelativeLayout) findViewById(R.id.ff); 
     final View layer = new View(this); 
     layer.setBackgroundColor(Color.parseColor("#88FF0000")); 
     // the ScrollView really doesn't like this View ,using this without the 
     // runnable will not work 
     layer.setLayoutParams(new RelativeLayout.LayoutParams(
       RelativeLayout.LayoutParams.MATCH_PARENT, 
       RelativeLayout.LayoutParams.MATCH_PARENT)); 
     layer.setOnClickListener(new OnClickListener() { 

      @Override 
      public void onClick(View v) { 
       Toast.makeText(getApplicationContext(), "SDFD", 
         Toast.LENGTH_SHORT).show(); 
      } 
     }); 
     parent.addView(layer); 
     // this is required because if we use directly the getWidth/getHeight we 
     // will get 0/0 
     layer.post(new Runnable() { 

      @Override 
      public void run() { 
       layer.setLayoutParams(new RelativeLayout.LayoutParams(parent 
         .getWidth(), parent.getHeight())); 
      } 
     }); 
//... 
+0

我不希望將scrollview作爲頂層佈局。我會嘗試你建議的代碼。我曾嘗試過,但也許我做錯了。當我上次嘗試將視圖放在滾動視圖上時,在框架佈局中,它停止了滾動的滾動視圖。 – JonWillis

+0

剛剛嘗試過你的確切代碼。當視圖位於滾動視圖之上時,不能滾動滾動視圖。它需要在裏面。 – JonWillis

+0

@JonWillis抱歉,我在發佈答案時完全忘記了'ScrollView'。我已經編輯了我的答案,併發布了一個解決方案,該方案應該可以在我測試它時發揮作用,但它並不那麼漂亮。 – Luksprog