1

以下是我的 xml 代码的一部分:

<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

在此处输入图像描述

4

1 回答 1

0

我知道这是一个老问题,但这里有一个答案。

问题是,在您的 XML 代码中,您的 gestureOverlayView android:layout_width="match_parent" android:layout_height="wrap_content" 具有以下尺寸

这意味着在您指定某些内容之前,高度将为 0dp,即使它会一直延伸到整个视图 - 宽度与父级匹配。

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

或者给 GestureOverlayView 一些高度和背景颜色,它应该变得可见。

于 2015-07-03T08:50:11.337 回答