以下是我的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
答案 0 :(得分:0)
我知道这是一个老问题,但这是一个答案。
问题是,在您的XML代码中,您具有gestureOverlayView的跟随维度 机器人:layout_width =&#34; match_parent&#34; 机器人:layout_height =&#34; WRAP_CONTENT&#34;
这意味着在指定某些内容之前,高度将为0dp,即使它将在视图中一直延伸 - 宽度与父级匹配。
显示此内容的方法是添加一些文字或其他内容。
或者给GestureOverlayView一些高度和背景颜色,它应该变得可见。