2013-04-17 157 views
1

以下是我的XML代碼部分:android.gesture.GestureOverlayView不顯示上的圖形佈局

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:id="@+id/table_detail" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="vertical" 
    android:padding="16dp" 
    tools:context=".SignCheckFragment" > 

    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:orientation="vertical" > 

     <android.gesture.GestureOverlayView 
      android:id="@+id/gestureOverlayView1" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:layout_marginTop="16dp" > 
     </android.gesture.GestureOverlayView>   

     <TextView 
      android:id="@+id/label_subtotal" 
      style="?android:attr/textAppearanceMedium" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:text="@string/subtotal" /> 

下圖是相應的圖形佈局。問題是,有沒有GestureOverlayView

enter image description here

回答

0

我知道這是一個老問題,但在這裏是一個答案。

的問題是,在你的XML代碼,您對gestureOverlayView Android的後續尺寸:layout_width =「match_parent」 機器人:layout_height =「WRAP_CONTENT」

這意味着,在您指定的某些內容的高度將是0dp,儘管它將一直延伸到視圖中 - 寬度與父級匹配。

使其出現的方法是添加一些文本或其他內容。

或者給GestureOverlayView一些高度和背景顏色,它應該變得可見。